-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "bsa-pf2e",
"title": "Beaver's System Adaption pf2e",
"version": "1.1.0",
"description": "Beaver's System Adaption pf2e",
"#devDir": "c:\\vtts\\v12.331\\Data\\modules",
"devDir": "c:\\vtts\\v11.315\\Data\\modules",
"main": "src/main.js",
"files": [
"src/types.ts"
],
"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.2.0",
"@ethaks/fvtt-quench": "^0.6.0",
"@league-of-foundry-developers/foundry-vtt-types": "^0.8.8-9",
"@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"
}
}