forked from foundryvtt/pf2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.03 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
{
"name": "foundry-pf2e",
"version": "5.2.3",
"description": "",
"private": true,
"type": "module",
"scripts": {
"build": "npm run clean && npm run build:packs && vite build",
"build:packs": "esno ./build/build-packs.ts",
"build:packs:json": "esno ./build/build-packs.ts json",
"build:conditions": "esno ./build/conditions.ts",
"clean": "esno ./build/clean.ts",
"watch": "npm run clean && npm run build:packs && vite build --watch --mode development",
"hot": "vite serve",
"link": "esno ./build/link-foundry.ts",
"extractPacks": "esno ./build/extract-packs.ts",
"pretest": "npm run lint",
"test": "jest",
"migrate": "esno ./build/run-migration.ts",
"lint": "npm run lint:ts && npm run lint:json",
"lint:ts": "eslint ./build ./src ./tests ./types --ext .ts",
"lint:json": "eslint ./static --ext .json --no-eslintrc --plugin json --rule \"json/*: error\"",
"lint:fix": "eslint ./build ./src ./tests ./types --ext .ts --fix"
},
"author": "The PF2e System Developers",
"license": "Apache-2.0",
"devDependencies": {
"@pixi/graphics-smooth": "^1.1.0",
"@pixi/particle-emitter": "5.0.8",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.2",
"@types/jquery": "^3.5.16",
"@types/jsdom": "^21.1.1",
"@types/luxon": "^3.3.0",
"@types/node": "^18.16.13",
"@types/prompts": "^2.4.4",
"@types/sortablejs": "^1.15.1",
"@types/tooltipster": "^0.0.32",
"@types/yaireo__tagify": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"classic-level": "^1.3.0",
"es-jest": "^2.1.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"esno": "^0.17.0",
"fs-extra": "^11.1.1",
"gsap": "^3.11.5",
"handlebars": "4.7.7",
"jest": "^29.6.1",
"jest-each": "^29.6.1",
"jquery": "^3.7.0",
"jsdom": "^22.1.0",
"peggy": "^3.0.2",
"pixi.js": "7.2.4",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"sass": "^1.63.6",
"socket.io": "^4.6.2",
"socket.io-client": "^4.6.2",
"tinymce": "6.4.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vite-plugin-checker": "^0.6.1",
"vite-plugin-static-copy": "^0.17.0",
"vite-tsconfig-paths": "^4.2.0",
"yargs": "^17.7.2"
},
"dependencies": {
"@codemirror/autocomplete": "^6.8.1",
"@codemirror/lang-json": "^6.0.1",
"@yaireo/tagify": "4.16.4",
"codemirror": "^6.0.1",
"luxon": "^3.3.0",
"minisearch": "^6.1.0",
"nouislider": "^15.7.1",
"remeda": "^1.23.0",
"sortablejs": "^1.15.0"
}
}