-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.52 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.52 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
{
"name": "jimmer-code-gen-vue3",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepare": "husky",
"lint:prettier": "prettier --write src/",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"type-check": "vue-tsc --build --force --noEmit",
"api": "tsx scripts/api/generateApi.ts",
"type-gen": "tsx scripts/precompile/generateTypes.ts && pnpm type-check",
"default-script-gen": "tsx scripts/backend/generateDefaultScript.ts",
"default-type-mapping-gen": "tsx scripts/backend/generateDefaultTypeMapping.ts"
},
"lint-staged": {
"*.{js,ts,vue,json,css}": [
"prettier --write"
]
},
"dependencies": {
"@potmot/command-history": "^0.0.0",
"@potmot/diff": "^0.1.2",
"@potmot/list": "^0.0.7",
"@progress/jszip-esm": "^1.0.4",
"@typescript/vfs": "^1.6.1",
"@vue-flow/core": "^1.48.2",
"@vue-flow/node-toolbar": "^1.1.1",
"ajv": "^8.18.0",
"clipboard-polyfill": "^4.1.1",
"dayjs": "^1.11.20",
"file-saver": "^2.0.5",
"html-to-image": "1.11.11",
"json5": "^2.2.3",
"lodash-es": "^4.18.1",
"mitt": "^3.0.1",
"monaco-editor": "^0.45.0",
"prismjs": "^1.30.0",
"typescript": "~5.9.0",
"uuid": "^11.1.0",
"vite-plugin-prismjs": "^0.0.8",
"vue": "^3.5.30",
"vue-color": "^3.3.1",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/adm-zip": "^0.5.7",
"@types/file-saver": "^2.0.7",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^27.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.18.6",
"@types/prismjs": "^1.26.5",
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"adm-zip": "^0.5.16",
"antlr-ng": "^1.0.10",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.7",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript-json-schema": "^0.65.1",
"vite": "^8.0.5",
"vitest": "^4.1.0",
"vue-tsc": "^3.2.6"
}
}