-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "gerber-viewer",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 8080",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .ts,.vue,.js,.cjs,.mjs"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.8.1",
"ant-design-vue": "^4.2.6",
"buffer": "^6.0.3",
"events": "^3.3.0",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"gerber-to-svg": "^4.2.8",
"lodash": "^4.17.23",
"pcb-stackup": "^4.2.8",
"pify": "^6.1.0",
"process": "^0.11.10",
"util": "^0.12.5",
"vue": "^3.5.29",
"vue-i18n": "^11.2.8",
"whats-that-gerber": "^4.2.7"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/lodash": "^4.17.24",
"@types/node": "^25.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/compiler-sfc": "^3.5.29",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.0.3",
"eslint-plugin-vue": "^10.8.0",
"sass": "^1.97.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vue-tsc": "^3.2.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"engines": {
"node": ">=20.19.0"
}
}