-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 4.2 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "csp",
"type": "module",
"version": "0.1.2",
"private": true,
"packageManager": "pnpm@10.13.1",
"description": "Tools for flexible configuration of chips and boards.",
"author": {
"name": "xqyjlj",
"email": "xqyjlj@126.com",
"url": "https://github.com/xqyjlj"
},
"license": "Apache-2.0",
"homepage": "https://csplink.top",
"repository": {
"type": "git",
"url": "https://github.com/csplink/csp.git"
},
"bugs": {
"url": "https://github.com/csplink/csp/issues"
},
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite --",
"dev:windows": "chcp 65001 && vite --",
"release:electron": "vue-tsc && vite build && electron-builder -p never",
"release:server": "pnpm server:build",
"release": "pnpm release:server && pnpm tools:update-contributors && pnpm release:electron",
"node:static_lint": "eslint .",
"node:static_typecheck": "vue-tsc --noEmit",
"node:static": "pnpm node:static_lint && pnpm node:static_typecheck",
"server:install": "pip install -r server/requirements.txt",
"server:dev": "python server/csp-server.py --trace serve -p 55432 --debug",
"server:gen": "python server/csp-server.py --trace gen",
"server:build": "python -m nuitka --standalone --assume-yes-for-downloads --output-dir=build-server --output-filename=csp-server --nofollow-import-to=public --onefile ./server/csp-server.py",
"server:static_isort": "python -m isort server --check-only --profile=black --skip=server/proto",
"server:static_black": "python -m black server --check --exclude \"server/proto\"",
"server:static": "pnpm server:static_isort && pnpm server:static_black",
"server:test": "python server/test.py",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"tools:update-contributors": "python ./tools/contributors.py",
"tools:schema": "python ./server/csp-server.py y2j resources/database/schema",
"proto:server": "protoc --pyi_out=server ./proto/*.proto && protoc --python_out=server ./proto/*.proto",
"proto:src": "protoc --plugin=protoc-gen-ts_proto=.\\node_modules\\.bin\\protoc-gen-ts_proto.cmd --ts_proto_out=src proto/*.proto",
"proto:build": "pnpm proto:server && pnpm proto:src"
},
"dependencies": {
"@bufbuild/protobuf": "^2.10.1",
"@element-plus/icons-vue": "^2.3.1",
"@imengyu/vue3-context-menu": "^1.5.0",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.46.5",
"@vue-flow/minimap": "^1.5.4",
"@vueuse/core": "^13.1.0",
"ajv": "^8.17.1",
"axios": "^1.9.0",
"commander": "^14.0.0",
"element-plus": "^2.10.2",
"expr-eval": "^2.0.2",
"github-markdown-css": "^5.8.1",
"html-to-image": "^1.11.11",
"jszip": "^3.10.1",
"konva": "^9.3.20",
"markdown-it": "^14.1.0",
"mitt": "^3.0.1",
"mousetrap": "^1.6.5",
"mousetrap-global-bind": "^1.1.0",
"pinia": "^3.0.2",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"remixicon": "^4.6.0",
"semver": "^7.7.2",
"socket.io-client": "^4.8.1",
"vue": "^3.4.21",
"vue-i18n": "^11.1.3",
"vue-konva": "^3.2.1",
"vue-router": "^4.5.1",
"xlsx": "^0.18.5",
"xpath": "^0.0.34",
"yaml": "^2.7.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/markdown-it": "^14.1.2",
"@types/mousetrap": "^1.6.15",
"@types/node": "^22.15.2",
"@types/prismjs": "^1.26.5",
"@types/semver": "^7.7.1",
"@unocss/eslint-plugin": "66.1.0-beta.12",
"@vitejs/plugin-vue": "^5.0.4",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"electron-icon-builder": "^2.0.1",
"eslint": "^9.25.1",
"eslint-plugin-format": "^1.0.1",
"json-schema-to-typescript": "^15.0.4",
"sass": "^1.87.0",
"ts-proto": "^2.8.3",
"tsx": "^4.19.4",
"typescript": "^5.2.2",
"unocss": "66.1.0-beta.12",
"unplugin-vue-components": "^28.5.0",
"unplugin-vue-router": "^0.12.0",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-prismjs": "^0.0.11",
"vite-svg-loader": "^5.1.0",
"vitepress": "^1.6.3",
"vue-tsc": "^2.0.26"
}
}