-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.01 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
{
"name": "pcb-tht-holder",
"version": "1.13.12",
"type": "module",
"main": "build/index.js",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"dev": "vite dev --host",
"prebuild": "cp src/service-worker.template.js public/service-worker.js && replace-in-file __VERSION__ v$npm_package_version public/service-worker.js",
"build": "vite build",
"preview": "vite preview",
"ts:check": "svelte-check --tsconfig ./tsconfig.json",
"format:check": "prettier --check .",
"format:fix": "prettier --write . | grep -v 'unchanged' | sed G",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"npm:reinstall": "rm -rf ./node_modules && rm -f ./package-lock.json && npm i && npm i",
"all": "node --run format:fix && node --run lint:fix && node --run ts:check && node --run prebuild && node --run build"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@tsconfig/svelte": "^5.0.8",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-svelte": "^3.17.0",
"eslint-plugin-unicorn": "^64.0.0",
"postcss": "^8.5.9",
"prettier": "^3.8.2",
"prettier-plugin-svelte": "^3.5.1",
"replace-in-file": "^8.4.0",
"svelte-check": "^4.4.6",
"svelte-eslint-parser": "^1.6.0",
"tailwindcss": "^4.2.2",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"vite": "^8.0.8"
},
"dependencies": {
"@iconify/svelte": "^5.2.1",
"@threlte/core": "^8.5.9",
"@threlte/extras": "^9.14.5",
"canvas": "^3.2.3",
"dayjs": "^1.11.20",
"flowbite-svelte": "^1.33.1",
"konva": "^10.2.5",
"nanoid": "^5.1.7",
"svelte": "^5.55.3",
"svelte-konva": "^1.0.1",
"svelte-persisted-store": "^0.12.0",
"three": "^0.183.2",
"three-bvh-csg": "^0.0.18",
"zod": "^4.3.6"
}
}