forked from uarix/LCEDA-Pro-LabelMaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.45 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.45 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
{
"name": "pcb-label-maker",
"version": "1.0.0",
"description": "PCB label maker for EasyEDA Pro/嘉立创EDA专业版",
"author": "Quarix",
"license": "Apache-2.0",
"homepage": "https://pro.lceda.cn/",
"scripts": {
"compile": "rimraf ./dist/ && ts-node ./config/esbuild.prod.ts",
"prepare": "husky",
"prettier:all": "prettier --write .",
"eslint:all": "eslint --ext .ts --fix .",
"fix": "npm run prettier:all && npm run eslint:all",
"build:interface": "tsc -p tsconfig.interface.json && vite build",
"prebuild": "npm run build:interface",
"build": "npm run compile && ts-node ./build/packaged.ts"
},
"devDependencies": {
"@jlceda/pro-api-types": "^0.1.111",
"@microsoft/tsdoc": "^0.15.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/fontkit": "^2.0.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.30",
"@types/opentype.js": "^1.3.8",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-conventionalcommits": "^9.0.0",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.11.1",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-tsdoc": "^0.3.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.6",
"ignore": "^6.0.2",
"jszip": "^3.10.1",
"lint-staged": "^15.2.10",
"postcss": "^8.5.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.5",
"shadcn-ui": "^0.9.4",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^6.0.7"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,ts,html,css,json,md}": "prettier --write"
},
"engines": {
"node": ">=20.5.0"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-select": "^2.1.5",
"@types/paper": "^0.12.3",
"fabric": "^6.5.4",
"fontkit": "^2.0.4",
"lucide-react": "^0.471.1",
"opentype.js": "^1.3.4",
"paper": "^0.12.18",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"uuid": "^11.0.5"
}
}