-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.18 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
{
"name": "makescript",
"private": true,
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"scripts": {
"lerna:publish": "yarn build && lerna publish prerelease --registry=https://registry.npmjs.org",
"lerna:publish-only": "lerna publish prerelease --registry=https://registry.npmjs.org",
"start:makescript": "node packages/makescript/bld/program/@cli.js",
"start:agent": "node packages/makescript-agent/bld/program/@cli.js",
"watch:web": "yarn workspace @makeflow/makescript watch:web",
"build": "rimraf packages/*/bld && tsc --build && yarn workspace @makeflow/makescript pack:web",
"lint": "eslint .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint",
"doc:update": "doctoc README.md && inplate --update"
},
"workspaces": [
"packages/makescript-agent",
"packages/makescript"
],
"devDependencies": {
"@mufan/code": "^0.2.5",
"@mufan/eslint-plugin": "^0.1.36",
"doctoc": "^2.0.0",
"eslint": "^7.13.0",
"inplate": "^0.1.11",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-morph": "^9.1.0",
"typescript": "^4.0.5"
}
}