-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
74 lines (74 loc) · 2.74 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
{
"name": "dfreds-convenient-effects",
"version": "1.0.0",
"description": "Adds easy to use toggleable active effects for common use cases",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "tsc && npm run clean && vite build --mode development",
"clean": "tsx ./build/clean.ts",
"hot": "vite serve",
"watch": "tsc && npm run clean && vite build --watch --mode development",
"link": "tsx ./build/link-foundry.ts",
"update-types": "tsx ./build/update-pf2e-types.ts && tsx ./build/copy-pf2e-types.ts",
"test": "jest",
"lint": "npm run lint:ts && npm run lint:json && npm run prettier:scss",
"lint:ts": "eslint ./src ./types --ext .ts",
"prettier:scss": "prettier --check src/styles",
"lint:json": "eslint ./static --ext .json --no-eslintrc --plugin json --rule \"json/*: error\" --rule \"linebreak-style: error\"",
"lint:fix": "eslint ./src ./types --ext .ts --fix && prettier --write src/styles"
},
"author": "DFreds (https://github.com/DFreds)",
"license": "MIT",
"dependencies": {
"uuid": "^10.0.0"
},
"devDependencies": {
"@pixi/graphics-smooth": "^1.1.0",
"@pixi/particle-emitter": "5.0.8",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.30",
"@types/jsdom": "^21.1.7",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.6",
"@types/prompts": "^2.4.9",
"@types/showdown": "^2.0.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"classic-level": "^1.3.0",
"es-jest": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-prettier": "^5.1.3",
"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": "^24.1.0",
"peggy": "^4.0.3",
"pixi.js": "^7.4.2",
"prettier": "3.2.5",
"prompts": "^2.4.2",
"prosemirror-commands": "^1.5.2",
"prosemirror-view": "^1.33.6",
"sass": "^1.77.6",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"tinymce": "6.8.4",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.15.6",
"typescript": "5.3.3",
"vite": "^5.3.1",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-static-copy": "^1.0.5",
"vite-tsconfig-paths": "^4.3.2"
}
}