-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.82 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
{
"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": "pnpm@10.5.0+sha512.11106a5916c7406fe4b8cb8e3067974b8728f47308a4f5ac5e850304afa6f57e2847d7950dfe78877d8d36bfb401d381c4215db3a4c3547ffa63c14333a6fa51",
"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.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"fs-extra": "^11.3.0",
"happy-dom": "^17.1.8",
"prettier": "^3.5.2",
"rollup-plugin-visualizer": "^5.13.1",
"sass-embedded": "^1.85.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.0.7"
},
"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.3",
"eslint": "8.57.1",
"nanoid": "^5.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}