forked from foundryvtt/pf2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "foundry-pf2e",
"version": "6.7.0",
"description": "",
"private": true,
"type": "module",
"scripts": {
"build": "npm run clean && npm run build:packs && vite build",
"build:packs": "tsx ./build/build-packs.ts",
"build:packs:json": "tsx ./build/build-packs.ts json",
"build:conditions": "tsx ./build/conditions.ts",
"clean": "tsx ./build/clean.ts",
"watch": "npm run clean && npm run build:packs && vite build --watch --mode development",
"hot": "vite serve",
"link": "tsx ./build/link-foundry.ts",
"extractPacks": "tsx ./build/extract-packs.ts",
"pretest": "npm run lint",
"test": "jest",
"migrate": "tsx ./build/run-migration.ts",
"lint": "npm run lint:ts && npm run lint:json && npm run prettier:scss-svelte",
"lint:ts": "eslint ./build ./src ./tests ./types",
"prettier:scss-svelte": "prettier --check src/styles src/**/*.svelte",
"lint:json": "eslint -c eslint.json.config.js",
"lint:fix": "eslint ./build ./src ./tests ./types --fix && prettier --write src/styles src/**/*.svelte"
},
"author": "The PF2e System Developers",
"license": "Apache-2.0",
"engines": {
"node": ">=20.15.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@pixi/graphics-smooth": "^1.1.0",
"@pixi/particle-emitter": "5.0.8",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/jsdom": "^21.1.7",
"@types/luxon": "^3.4.2",
"@types/node": "^20.16.13",
"@types/prompts": "^2.4.9",
"@types/showdown": "^2.0.6",
"@types/sortablejs": "^1.15.8",
"@types/tooltipster": "^0.0.35",
"@types/uuid": "^10.0.0",
"@types/yaireo__tagify": "4.17.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"classic-level": "^1.3.0",
"es-jest": "^2.1.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"gsap": "3.11.5",
"handlebars": "4.7.8",
"jest": "^29.7.0",
"jest-each": "^29.7.0",
"js-angusj-clipper": "^1.3.1",
"jsdom": "^25.0.1",
"peggy": "^4.1.1",
"pixi.js": "^7.4.2",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"prompts": "^2.4.2",
"prosemirror-commands": "^1.5.2",
"prosemirror-view": "^1.33.6",
"sass": "^1.81.0",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"svelte-preprocess": "^6.0.3",
"tinymce": "6.8.4",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-static-copy": "^2.1.0",
"vite-tsconfig-paths": "^5.1.2",
"yargs": "^17.7.2"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/lang-json": "^6.0.1",
"@yaireo/tagify": "4.16.4",
"codemirror": "^6.0.1",
"luxon": "^3.5.0",
"minisearch": "^7.1.0",
"nouislider": "^15.8.1",
"remeda": "^2.17.3",
"sortablejs": "^1.15.3",
"svelte": "^5.2.2",
"uuid": "^11.0.3"
}
}