-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.86 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.86 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "foundry-pf2e",
"version": "7.12.2",
"description": "",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run \"/build:(?:packs|system)$/\"",
"build:system": "tsx ./build/build-system.ts",
"build:packs": "tsx ./build/build-packs.ts",
"build:packs:json": "tsx ./build/build-packs.ts --json",
"build:conditions": "tsx ./build/conditions.ts",
"build:anachronism": "tsx ./build/anachronism.ts",
"watch": "npm run build:packs && vite build --watch --mode development",
"hot": "tsx ./build/hmr.ts",
"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": "eslint && npm run prettier:scss-svelte",
"prettier:scss-svelte": "prettier --check src/styles src/**/*.svelte",
"lint:fix": "eslint --fix && prettier --write src/styles src/**/*.svelte"
},
"author": "The (P|S)F2E System Developers",
"license": "Apache-2.0",
"engines": {
"node": ">=20.15.0"
},
"devDependencies": {
"@eslint/json": "^1.2.0",
"@pixi/basis": "7.4.3",
"@pixi/graphics-smooth": "1.1.1",
"@pixi/particle-emitter": "5.0.8",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/jquery": "^4.0.0",
"@types/jsdom": "^28.0.1",
"@types/luxon": "^3.7.1",
"@types/node": "^25.5.2",
"@types/prompts": "^2.4.9",
"@types/showdown": "^2.0.6",
"@types/simple-peer": "^9.11.9",
"@types/sortablejs": "^1.15.9",
"@types/tooltipster": "^0.0.35",
"@types/yaireo__tagify": "4.17.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"classic-level": "^3.0.0",
"es-jest": "^2.1.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-prettier": "^5.5.5",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"globals": "^17.4.0",
"gsap": "3.11.5",
"handlebars": "4.7.9",
"jest": "^30.3.0",
"jest-each": "^30.3.0",
"js-angusj-clipper": "^1.3.1",
"jsdom": "^29.0.1",
"peggy": "^5.1.0",
"pixi.js": "7.4.3",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prompts": "^2.4.2",
"prosemirror-collab": "^1.3.1",
"prosemirror-commands": "^1.7.1",
"prosemirror-dropcursor": "^1.8.2",
"prosemirror-gapcursor": "^1.4.1",
"prosemirror-history": "^1.5.0",
"prosemirror-inputrules": "^1.5.1",
"prosemirror-keymap": "^1.2.3",
"prosemirror-model": "^1.25.4",
"prosemirror-schema-list": "^1.5.1",
"prosemirror-state": "^1.4.4",
"prosemirror-tables": "^1.8.5",
"prosemirror-transform": "^1.12.0",
"prosemirror-view": "^1.41.8",
"sass": "^1.99.0",
"socket.io": "4.8.3",
"socket.io-client": "4.8.3",
"svelte-preprocess": "^6.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-static-copy": "^4.0.1",
"yargs": "^18.0.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/lang-json": "^6.0.2",
"@yaireo/tagify": "4.16.4",
"codemirror": "^6.0.2",
"luxon": "^3.7.2",
"minisearch": "^7.2.0",
"nouislider": "^15.8.1",
"remeda": "^2.32.1",
"sortablejs": "^1.15.7",
"svelecte": "^5.3.0",
"svelte": "^5.55.1",
"uuid": "^13.0.0"
}
}