forked from xdy/twodsix-foundryvtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.32 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
{
"private": true,
"name": "twodsix",
"version": "1.4.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",
"data:copy": "ts-node src/scripts/data_copy.ts",
"data:reset": "npm run build && ts-node src/scripts/data_reset.ts -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": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.238.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-dynamic-import-vars": "^1.4.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/jquery": "^3.5.11",
"@types/node": "^16.11.19",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"esbuild": "^0.13.15",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"generate-source-map": "^0.0.5",
"gulp": "^4.0.2",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-esbuild": "^4.6.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-typescript2": "^0.31.1",
"sass": "^1.46.0",
"semantic-release": "^18.0.1",
"simple-git": "^2.48.0",
"ssri": ">=8.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"browserslist": [
"last 3 versions"
],
"dependencies": {}
}