-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.53 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
70
71
72
73
74
75
76
77
{
"name": "pf2e-graphics",
"type": "module",
"version": "0.0.0",
"private": true,
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/standard/*"
},
"scripts": {
"dev": "vite",
"build": "pnpm run build:vite && pnpm run build:clean",
"build:vite": "vite build",
"build:sonda": "cross-env SONDA=true pnpm run build:vite",
"build:clean": "tsx ./scripts/cleanJSONs.ts",
"build:schema": "tsx ./scripts/buildJSONSchema.ts",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"changelog": "changelog --format markdownlint --create --release",
"test": "pnpm run test:assets && pnpm run test:animations && pnpm run lint:fix",
"test:animations": "tsx ./scripts/tests/animations.ts",
"test:assets": "pnpm run test:assets:exist && pnpm run test:assets:format",
"test:assets:exist": "tsx ./scripts/tests/assets/exist.ts",
"test:assets:format": "tsx ./scripts/tests/assets/format.ts",
"generate-spritesheet": "tsx ./scripts/generateSpritesheetJSON.ts",
"symlink": "tsx ./scripts/symlink.ts"
},
"dependencies": {
"@typhonjs-fvtt/runtime": "^0.2.0",
"@typhonjs-fvtt/standard": "^0.2.1"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@antfu/eslint-config": "^6.0.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/jquery": "^3.5.32",
"@types/prompts": "^2.4.9",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"eslint": "^9.27.0",
"eslint-plugin-antfu": "^3.1.1",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-svelte": "^3.9.0",
"foundry-pf2e": "github:7H3LaughingMan/foundry-pf2e#c9d7838",
"jb2a-databases": "github:Jules-Bens-Aa/jb2a-databases",
"json-source-map": "github:MrVauxs/json-source-map",
"keep-a-changelog": "^2.6.2",
"picocolors": "^1.1.1",
"postcss": "^8.5.4",
"postcss-minify": "^1.1.0",
"postcss-prefixwrap": "^1.55.0",
"prompts": "^2.4.2",
"sequencer": "github:fantasycalendar/FoundryVTT-Sequencer",
"sonda": "^0.9.0",
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"svelte-jsoneditor": "^1.1.2",
"svelte-multiselect": "11.0.0-rc.1",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^7.1.11",
"vite-plugin-checker": "^0.11.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^3.25.52",
"zod-to-json-schema": "^3.24.5",
"zod-validation-error": "^3.4.1"
},
"trustedDependencies": [
"@parcel/watcher",
"svelte-preprocess"
]
}