forked from foundryvtt/pf2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.9 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
{
"name": "foundry-pf2e",
"version": "4.11.2",
"description": "",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build:packs && vite build",
"build:packs": "esno ./build/build-packs.ts",
"watch": "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": "^0.0.30",
"@pixi/particle-emitter": "5.0.7",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.1",
"@types/jquery": "^3.5.16",
"@types/jsdom": "^21.1.1",
"@types/luxon": "^3.3.0",
"@types/node": "^18.16.1",
"@types/prompts": "^2.4.4",
"@types/sortablejs": "^1.15.1",
"@types/tooltipster": "^0.0.31",
"@types/yaireo__tagify": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"es-jest": "^2.1.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"esno": "^0.16.3",
"fs-extra": "^11.1.1",
"gsap": "^3.11.5",
"handlebars": "4.7.7",
"jest": "^29.5.0",
"jest-each": "^29.5.0",
"jquery": "^3.6.4",
"jsdom": "^21.1.1",
"nedb-promises": "^6.2.1",
"peggy": "^3.0.2",
"pixi.js": "6.5.2",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"sass": "^1.62.1",
"socket.io": "4.5.1",
"socket.io-client": "4.5.1",
"tinymce": "6.1.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"vite": "^4.3.3",
"vite-plugin-checker": "^0.5.6",
"vite-plugin-static-copy": "^0.14.0",
"vite-tsconfig-paths": "^4.2.0",
"yargs": "^17.7.1"
},
"dependencies": {
"@codemirror/autocomplete": "^6.5.1",
"@codemirror/lang-json": "^6.0.1",
"@yaireo/tagify": "4.16.4",
"codemirror": "^6.0.1",
"luxon": "^3.3.0",
"minisearch": "^5.1.0",
"nouislider": "^15.7.0",
"sortablejs": "^1.15.0"
}
}