-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 846 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 846 Bytes
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
{
"name": "rtf-readme-packages",
"private": true,
"author": "Chengdu Mufan Technology Co., Ltd.",
"scripts": {
"compile": "tsc --build ./tsconfig.json",
"watch": "tsc --build ./tsconfig.json -watch",
"build": "rimraf packages/*/bld && tsc --build",
"lint": "eslint .",
"lint-prettier": "prettier --check .",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./packages/vscode-rtf-readme/bld/extension/test/runTest.js"
},
"workspaces": [
"packages/rtfr-serve",
"packages/rtf-readme",
"packages/vscode-rtf-readme"
],
"devDependencies": {
"@mufan/code": "^0.2.10",
"@mufan/eslint-plugin": "^0.1.62",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.18",
"eslint": "^8.10.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
}
}