-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
80 lines (80 loc) · 2.54 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
{
"private": true,
"name": "twodsix",
"version": "5.12.0",
"description": "A 2d6 system",
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"bump-version": "gulp bumpVersion",
"lint": "eslint ./src --fix && tsc --project tsconfig.json --noEmit",
"data:copy": "node src/scripts/data_copy.mjs",
"data:reset": "npm run build && node src/scripts/data_reset.mjs -f",
"data:license": "cp foundry/foundry_dev_data/Config/license.json foundry/license.json",
"server": "node foundry/foundryvtt/resources/app/main.js --dataPath=foundry/foundry_dev_data --adminKey=foundry",
"migration:create": "node src/scripts/create-migration.mjs"
},
"license": "",
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"contributors": [
{
"name": "",
"email": ""
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-dynamic-import-vars": "^2.1.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jquery": "^3.5.31",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"gulp": "^5.0.0",
"marked": "^14.1.2",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-multi-input": "^1.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.79.4",
"semantic-release": "^24.1.2",
"simple-git": "^3.27.0",
"socket.io-client": "^4.8.0",
"ssri": "^12.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vinyl-fs": "^4.0.0"
},
"browserslist": [
"last 3 versions"
],
"dependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "github:League-of-Foundry-Developers/foundry-vtt-types#2315d2385e256f8e7011667683f0859f1f769fdf"
}
}