-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.65 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
{
"name": "beavers-gamepad",
"title": "Beaver's Gamepad",
"version": "2.1.1",
"description": "For controlling actors while playing locally on a central map monitor",
"#devDir": "C:\\Users\\Riess\\AppData\\Local\\FoundryVTT\\Data\\modules",
"#devDir": "C:\\data\\Data\\modules",
"devDir": "D:\\Vtts\\v10\\Data\\modules",
"#devDir": "D:\\Vtts\\v11\\Data\\modules",
"main": "src/main.js",
"scripts": {
"type": "npx -p typescript tsc src/types.ts --declaration --emitDeclarationOnly --outDir dist/src",
"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}"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"quoteProps": "consistent",
"trailingComma": "all",
"printWidth": 120
},
"devDependencies": {
"beavers-system-interface": "^2.1.5",
"@ethaks/fvtt-quench": "^0.6.0",
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@types/jest": "^27.4.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": "^6.0.0-alpha.1",
"gulp-zip": "^5.0.2",
"json-stringify-pretty-compact": "^3.0.0",
"karma-cli": "^2.0.0",
"prettier": "^2.7.1",
"typescript": "^4.6.3"
},
"dependencies": {
"save-dev": "^0.0.1-security"
}
}