generated from League-of-Foundry-Developers/foundry-typescript-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "fabricate",
"version": "0.10.24",
"description": "A system-agnostic, flexible crafting module for FoundryVT",
"main": "index.js",
"type": "module",
"scripts": {
"releaseLocal": "npm run test && npm run build && node scripts/releaseLocal.cjs",
"build": "vite build",
"test": "jest",
"serve": "vite",
"coverageTest": "jest --collect-coverage --collect-coverage-from='./src/**/*.ts'",
"jekyll": "cd docs && bundle exec jekyll serve",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"author": "Matthew Potts",
"license": "MIT",
"devDependencies": {
"@skeletonlabs/skeleton": "^2.11.0",
"@skeletonlabs/tw-plugin": "^0.4.1",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@tsconfig/svelte": "^5.0.4",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/lodash": "^4.17.15",
"autoprefixer": "^10.4.20",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"less": "^4.2.2",
"lodash": "^4.17.21",
"postcss": "^8.5.3",
"svelte": "^5.20.2",
"svelte-check": "^4.1.4",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.6",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vite": "^4.5.9"
},
"dependencies": {
"@types/node": "^22.13.5"
}
}