-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
41
42
43
44
45
{
"name": "@mufan/code-boilerplates",
"version": "0.0.0",
"description": "Code boilerplates for Mufan",
"repository": "https://github.com/makeflow/mufan-code-boilerplates.git",
"author": "Chengdu Mufan Technology Co., Ltd.",
"license": "MIT",
"type": "module",
"exports": {
"./general": {
"types": "./general/bld/library/index.d.ts",
"default": "./general/bld/library/index.js"
},
"./typescript": {
"types": "./typescript/bld/library/index.d.ts",
"default": "./typescript/bld/library/index.js"
}
},
"scripts": {
"3": "yarn && yarn-deduplicate && yarn",
"build": "rimraf --glob */bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"test": "npm run lint-prettier && npm run build && npm run lint"
},
"dependencies": {
"@magicspace/core": "^0.3.6",
"@magicspace/utils": "^0.3.4",
"lodash": "^4.17.20",
"npm-which": "^3.0.1",
"prettier": "^3.2.5",
"tslang": "^0.1.22",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@mufan/eslint-plugin": "^0.2.18",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.27",
"eslint": "^8.56.0",
"rimraf": "^5.0.5",
"run-in-every": "^0.2.0",
"yarn-deduplicate": "^6.0.2"
}
}