-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "foundry-db-packer",
"private": true,
"version": "0.2.2",
"description": "Aids in packing Foundry VTT db files for release.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "node esbuild.js",
"lint": "tsc",
"release": "NODE_OPTIONS='--experimental-json-modules' node scripts/release.js",
"test": "vitest",
"version": "npm run build && npx changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amediocredad/foundry-db-packer.git"
},
"keywords": [
"github action"
],
"author": "@aMediocreDad | Filip Ambrosius",
"license": "MIT",
"bugs": {
"url": "https://github.com/aMediocreDad/foundry-db-packer/issues"
},
"homepage": "https://github.com/aMediocreDad/foundry-db-packer#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@types/js-yaml": "4.0.5",
"@types/node": "20.2.5",
"builtin-modules": "3.3.0",
"chalk": "5.2.0",
"esbuild": "0.17.19",
"js-yaml": "4.1.0",
"nedb-promises": "6.2.1",
"typescript": "5.0.4",
"vitest": "0.31.1",
"classic-level": "1.3.0"
},
"volta": {
"node": "16.20.0"
}
}