-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1003 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1003 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
30
{
"name": "circuit-simulator",
"version": "1.0.0",
"description": "电路仿真代码仓库",
"scripts": {
"update": "pnpm update -r",
"update:last": "pnpm update -r -L",
"build": "pnpm run build --filter=!@circuit/website",
"test": "pnpm run -r test --parallel --filter .",
"test:update": "pnpm run -r test:update --parallel --filter .",
"lint": "pnpm run -r lint --parallel --filter .",
"lint:fix": "pnpm run -r lint:fix --parallel --filter .",
"dev:website": "pnpm run dev --filter @circuit/website",
"build:website": "pnpm run build --filter @circuit/website"
},
"engines": {
"node": ">= 14.0.0",
"pnpm": ">= 5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xiaoboost/circuit-simulator.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-plugin-react": "^7.24.0"
}
}