-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.38 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.38 KB
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
{
"name": "draw-steel",
"version": "1.0.0",
"description": "The Draw Steel system by MCDM for Foundry Virtual Tabletop",
"scripts": {
"createSymlinks": "node ./tools/create-symlinks.mjs",
"pullJSONtoLDB": "node ./tools/pullJSONtoLDB.mjs",
"pushLDBtoJSON": "node ./tools/pushLDBtoJSON.mjs",
"unpack": "npm run pushLDBtoJSON",
"build": "npm run build:packs && npm run build:code",
"build:packs": "npm run pullJSONtoLDB",
"build:code": "rollup -c",
"lint": "eslint draw-steel.mjs src/module/**/* templates/**/*",
"lint:fix": "eslint --fix draw-steel.mjs src/module/**/* templates/**/*",
"postinstall": "npm run createSymlinks",
"prepareRelease": "npm run build:packs && npm run build:code"
},
"browserslist": [
"last 3 versions"
],
"author": "Joseph Meehan",
"private": true,
"devDependencies": {
"@eslint/js": "^9.27.0",
"@foundryvtt/foundryvtt-cli": "^3.0.0",
"@html-eslint/eslint-plugin": "^0.26.0",
"@html-eslint/parser": "^0.26.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@stylistic/eslint-plugin": "^5.5.0",
"eslint": "^9.27.0",
"eslint-plugin-jsdoc": "^51.4.1",
"postcss": "^8.5.6",
"postcss-import": "^16.1.0",
"postcss-url": "^10.1.3",
"rollup": "^4.59.0",
"rollup-plugin-postcss": "^4.0.2",
"showdown": "^2.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}