-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"private": true,
"name": "foundryvtt-lancer",
"version": "3.1.3",
"description": "",
"sideEffects": [
"src/lancer.scss",
"src/lancer.ts"
],
"scripts": {
"build": "vite build",
"build:packs": "./scripts/pack.mjs",
"build:watch": "vite build --watch",
"clean": "rm -fR dist",
"format": "dprint fmt",
"generate:yml": "./scripts/unpack.mjs",
"link": "./scripts/symlink.mjs",
"postinstall": "./scripts/symlink.mjs",
"prepare": "husky install",
"serve": "vite",
"version": "./scripts/version.mjs && git add src/system.json",
"watch": "vite build --watch"
},
"author": "",
"license": "",
"devDependencies": {
"@foundryvtt/foundryvtt-cli": "^3.0.3",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^24.0.1",
"dprint": "^0.53.1",
"fvtt-types": "github:League-of-Foundry-Developers/foundry-vtt-types#main",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nanoid": "^3.1.31",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.40.0",
"svelte": "^5.55.7",
"svelte-check": "^4.0.0",
"svelte-language-server": "^0.14.8",
"svelte-preprocess": "^6.0.0",
"tslib": "^1.14.1",
"typescript": "^5.8.3",
"vite": "^8.0.16",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-foundryvtt": "^3.0.0"
},
"dependencies": {
"@massif/dustgrave-data": "^1.4.0",
"@massif/ktb-data": "^1.2.4",
"@massif/lancer-data": "^3.1.7",
"@massif/long-rim-data": "^1.2.2",
"@massif/osr-data": "^1.2.0",
"@massif/ows-data": "^1.0.1",
"@massif/sotw-data": "^1.0.2",
"@massif/ssmr-data": "^1.7.0",
"@massif/wallflower-data": "^2.1.0",
"jszip": "^3.10.1",
"tippy.js": "^6.3.1"
},
"lint-staged": {
"*.ts": "dprint fmt --allow-no-files",
"*.svelte": "dprint fmt --allow-no-files",
"*.scss": "dprint fmt --allow-no-files",
"*.css": "dprint fmt --allow-no-files",
"*.hbs": "dprint fmt --allow-no-files",
"*.json": "dprint fmt --allow-no-files"
}
}