forked from MrVauxs/pf2e-graphics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.21 KB
/
package.json
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
{
"name": "pf2e-graphics",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "npm run build:vite && npm run build:clean",
"build:vite": "vite build",
"build:clean": "tsx ./scripts/cleanAnimations.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": "npm run test:assets && npm run test:animations && npm run lint:fix",
"test:animations": "tsx ./scripts/tests/animations.ts",
"test:assets": "npm run test:assets:exist && npm run test:assets:format",
"test:assets:exist": "tsx ./scripts/tests/assets/exist.ts",
"test:assets:format": "tsx ./scripts/tests/assets/format.ts"
},
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/svelte-standard/*"
},
"dependencies": {
"@typhonjs-fvtt/runtime": "^0.1.3",
"@typhonjs-fvtt/svelte-standard": "^0.1.0"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@antfu/eslint-config": "^3.8.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@typed-foundry/socketlib": "^1.0.12",
"@types/lodash": "^4.17.13",
"autoprefixer": "^10.4.18",
"eslint": "9.13.0",
"eslint-plugin-antfu": "^2.6.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-svelte": "^2.45.1",
"foundry-pf2e": "github:reonZ/foundry-pf2e",
"jb2a-databases": "github:Jules-Bens-Aa/jb2a-databases",
"json-source-map": "^0.6.1",
"keep-a-changelog": "^2.5.3",
"lodash": "^4.17.21",
"picocolors": "^1.1.1",
"postcss": "^8.4.47",
"postcss-minify": "^1.1.0",
"sequencer": "github:fantasycalendar/FoundryVTT-Sequencer",
"svelte": "^4.2.19",
"svelte-check": "^4.0.5",
"svelte-jsoneditor": "^1.1.1",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.14",
"tslib": "^2.8.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-checker": "^0.8.0",
"vite-tsconfig-paths": "^5.1.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5",
"zod-validation-error": "^3.4.0"
}
}