-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
33 lines (33 loc) · 1.03 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
{
"name": "safety-tools",
"title": "Safety Tools",
"version": "0.4.0",
"description": "Safety Tools for Foundry VTT",
"devDir": "/home/dan/.local/share/FoundryVTT/Data/modules/",
"main": "src/index.ts",
"scripts": {
"build": "npx gulp",
"watch": "npx gulp watch",
"clean": "npx gulp clean",
"devbuild": "npx gulp dev",
"devwatch": "npx gulp devWatch",
"devclean": "npx gulp devClean",
"release": "npx gulp zip",
"tag": "git tag -d ${npm_package_name}_${npm_package_version} 2>/dev/null ; git tag ${npm_package_name}_${npm_package_version} && git push -f origin ${npm_package_name}_${npm_package_version}"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.238.1",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-minify": "^3.1.0",
"gulp-multi-dest": "^1.3.7",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-tabify": "0.0.2",
"gulp-typescript": "^5.0.1",
"gulp-zip": "^5.1.0",
"json-stringify-pretty-compact": "^3.0.0",
"typescript": "^4.5.4"
}
}