-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.11 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.11 KB
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
{
"name": "farrow-api-playground",
"private": true,
"workspaces": [
"packages/*"
],
"repository": "git@github.com:tqma113/farrow-api-playground.git",
"author": "Ma Tianqi <mtq1997@126.com>",
"license": "MIT",
"scripts": {
"build": "pnpm run build:react && pnpm run init:electron && pnpm run build:electron && pnpm run build:html",
"build:react": "pnpm run build --filter ./packages/farrow-api-playground-react",
"build:electron": "pnpm run build --filter ./packages/farrow-api-playground-electron",
"build:html": "pnpm run build --filter ./packages/farrow-api-playground-html",
"init:electron": "cd ./packages/farrow-api-playground-electron && npm run init && cd ..",
"init": "pnpm install && pnpm run build",
"setup": "pnpm run clean && pnpm run init",
"clean": "pnpm run clean:deps && pnpm run clean:build",
"clean:deps": "lerna clean -y && rm -rf node_modules",
"clean:build": "rm -rf ./packages/*/{dist,esm}",
"reset": "pnpm run clean && pnpm install",
"format": "prettier . --write"
},
"devDependencies": {
"lerna": "^3.18.3",
"prettier": "^2.3.1"
}
}