-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"private": true,
"description": "Mono repository for the Clippet project enabling audio feedback on the web.",
"scripts": {
"setup": "npm install && npm run bootstrap && npm run build:setup",
"bootstrap": "lerna bootstrap && lerna link",
"clean": "npm run clean:packages && npm run clean:git",
"clean:packages": "lerna run clean --parallel && lerna clean",
"clean:git": "git clean -fXd",
"test": "lerna run test --parallel --stream",
"start": "lerna run start --parallel --stream",
"build": "lerna run build --parallel --stream",
"build:setup": "lerna run build --stream",
"build:clean": "lerna run clean --parallel && npm run setup",
"build:watch": "lerna run build:watch --parallel --stream",
"publish:prepare": "lerna run clean:build --stream && npm run setup",
"publish:npm": "npm run publish:prepare && lerna run publish:npm --parallel --stream",
"publish:dry": "npm run publish:prepare && lerna run publish:dry --parallel --stream"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmd-studio/clippet.git"
},
"keywords": [],
"author": "BMD Studio <[email protected]> (https://bmd.studio)",
"license": "ISC",
"bugs": {
"url": "https://github.com/bmd-studio/clippet/issues"
},
"homepage": "https://clippet.dev",
"workspaces": [
"packages/examples/*",
"packages/fonts/*",
"packages/libraries/*",
"packages/shared"
],
"devDependencies": {
"lerna": "6.6.1"
}
}