-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
{
"name": "patternsoft",
"private": true,
"version": "0.3.0",
"type": "module",
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "node scripts/sync-version.mjs && tauri build",
"version:sync": "node scripts/sync-version.mjs",
"version:check": "node scripts/check-versions.mjs",
"version": "node scripts/sync-version.mjs"
},
"dependencies": {
"@freesewing/collection": "^4.4.3",
"@freesewing/config": "^4.4.3",
"@freesewing/core": "^4.4.3",
"@freesewing/florence": "^4.4.3",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"earcut": "^3.0.2",
"i18next": "^25.8.13",
"jszip": "^3.10.1",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.4.624",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.4",
"svg-path-parser": "^1.1.0",
"svgpath": "^2.6.0",
"three": "^0.183.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tailwindcss/vite": "^4.2.0",
"@tauri-apps/cli": "^2.10.0",
"@types/earcut": "^3.0.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"tailwindcss": "^4.2.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^6.4.1",
"vitest": "^2.1.0"
}
}