-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"name": "my-svelte-project",
"version": "0.0.3-beta.5",
"type": "module",
"engines": {
"node": ">=22 <23"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"watch": "vite build --watch",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"count-lines": "npx cloc --include-ext=js,svelte,less --exclude-dir=node_modules,dist,build .",
"release:alpha": "standard-version --prerelease alpha && git push --follow-tags origin main",
"release:beta": "standard-version --prerelease beta && git push --follow-tags origin main",
"release": "standard-version && git push --follow-tags origin main"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "13.340.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@testing-library/svelte": "^5.2.8",
"@testing-library/user-event": "^14.6.1",
"@types/masonry-layout": "^4.2.8",
"@types/node": "^22.10.2",
"@types/packery": "^1.4.37",
"@vitest/coverage-v8": "^4.1.9",
"conventional-recommended-bump": "^11.2.0",
"glob": "^13.0.6",
"jsdom": "^29.1.1",
"less": "^4.2.1",
"sass": "^1.80.6",
"sloc": "^0.3.2",
"standard-version": "^9.5.0",
"svelte": "^5.56.3",
"ts-morph": "^27.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"overrides": {
"brace-expansion": "5.0.6",
"esbuild": "0.28.1",
"picomatch": "4.0.4",
"qs": "6.15.2",
"ws": "8.21.0",
"socket.io-parser": "4.2.6"
},
"dependencies": {
"masonry-layout": "^4.2.2",
"packery": "^3.0.0",
"svelte-select": "^5.8.3"
}
}