-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.62 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
84
85
86
87
88
89
{
"private": true,
"name": "pf1spheres",
"version": "0.8.0",
"description": "",
"license": "EUPL-1.2",
"homepage": "https://github.com/ethaks/pf1spheres",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": "https://github.com/ethaks/pf1spheres/-/issues"
},
"contributors": [
{
"name": "Ethaks"
}
],
"sideEffects": [
"src/styles/pf1spheres.scss",
"src/pf1spheres.ts"
],
"type": "module",
"scripts": {
"build": "npm run packs:compile && vite build",
"build:watch": "npm run packs:compile && vite build --watch",
"build:dev": "npm run packs:compile && vite build --mode development",
"serve": "vite",
"link-package": "node ./tools/link-package.js",
"clean:link": "node ./tools/link-package.js --clean",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"./**/*.(ts|js|mjs|json|yaml|scss|css)\"",
"test": "vitest run",
"test:watch": "vitest watch --ui",
"test:ci": "vitest run -c vitest.ci.config.ts --coverage",
"typecheck": "tsc",
"postbump": "prettier --write ./public/module.json",
"release": "commit-and-tag-version -a",
"postinstall": "husky install",
"packs:extract": "node ./tools/packs.js extract",
"packs:compile": "node ./tools/packs.js compile",
"docs": "typedoc"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.5.0",
"@foundryvtt/foundryvtt-cli": "^1.0.2",
"@guanghechen/rollup-plugin-copy": "^5.0.12",
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"c8": "^10.1.2",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"fp-ts": "^2.16.6",
"fs-extra": "^11.2.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"io-ts": "^2.2.21",
"js-yaml": "^4.1.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"listr2": "^8.2.1",
"picocolors": "^1.0.1",
"prettier": "^3.3.2",
"rollup-plugin-visualizer": "^5.12.0",
"terser": "^5.31.1",
"tslib": "^2.6.3",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.3.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"vite": "^5.3.1",
"vite-plugin-checker": "^0.6.4",
"vitest": "^1.6.0",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.(ts|js|mjs)": "eslint --fix",
"*.(json|yaml|css|scss)": "prettier --write"
}
}