-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "csg-builder",
"version": "1.4.1",
"type": "module",
"main": "build/index.js",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"export": "tsx --tsconfig tsconfig.cli.json bin/csg-export.ts",
"test": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"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 build && node --run test"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/vite": "^4.1.17",
"@threlte/core": "^8.3.1",
"@threlte/extras": "^9.7.1",
"@tsconfig/svelte": "^5.0.6",
"@types/node": "^24.10.1",
"@types/three": "^0.181.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"autoprefixer": "^10.4.22",
"commander": "^14.0.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^3.13.1",
"eslint-plugin-unicorn": "^62.0.0",
"flowbite-svelte": "^1.29.1",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.45.5",
"svelte-check": "^4.3.4",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.1.17",
"three": "^0.181.2",
"three-bvh-csg": "^0.0.17",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^4.0.15"
}
}