-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
{
"name": "pub-crusade",
"version": "1.0.6",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Where we're going, we don't need tests!\"",
"build": "vite build",
"dev": "vite dev & tsc --noEmit --watch",
"link": "./tasks.ts link",
"unlink": "tasks.ts unlink",
"eslint:check": "eslint src",
"eslint:fix": "eslint src --fix",
"format:check": "prettier --check src",
"format:fix": "prettier --write src",
"lint:check": "pnpm format:check && pnpm eslint:check",
"lint:fix": "pnpm format:fix && pnpm eslint:fix",
"do-release": "./packages/shared-fvtt-bits/scripts/do-release.sh",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.1",
"@lumphammer/investigator-fvtt-types": "^1.13.2",
"@swc/plugin-emotion": "^7.0.3",
"@types/fs-extra": "^11.0.4",
"@types/react": "^19.0.5",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"fs-extra": "^11.2.0",
"happy-dom": "^16.5.3",
"prettier": "^3.4.2",
"rollup-plugin-visualizer": "^5.13.1",
"sass-embedded": "^1.83.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@lumphammer/shared-fvtt-bits": "workspace:^",
"@radix-ui/react-switch": "^1.1.2",
"nanoid": "^5.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}