forked from thehappyanarchist/foundryacks
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.68 KB
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
{
"name": "foundryvtt-acks-core",
"version": "14.0.1",
"description": "Adventurer Conqueror King System Imperial Imprint (ACKS II) core game module for the Foundry Virtual Tabletop.",
"main": "src/acks.mjs",
"engines": {
"node": ">=20.19.0"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "npm run build:clean && npm run build:source && npm run build:css",
"build:clean": "node scripts/build-clean.mjs",
"build:source": "rollup -c",
"build:css": "node scripts/build-css.mjs",
"build:copy:all": "node scripts/build-copy-all.mjs",
"format:check": "prettier . --check",
"format:fix": "prettier . --write",
"packs:databaseToSource": "node scripts/packs-unpack.mjs",
"packs:sourceToDatabase": "node scripts/packs-pack.mjs",
"packs:cleanupSource": "node scripts/packs-clean.mjs",
"link": "node scripts/link-foundry.mjs",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AutarchLLC/foundryvtt-acks-core.git"
},
"private": true,
"keywords": [
"acks",
"foundry",
"vtt"
],
"author": "ArcanistWill",
"contributors": [
"LeRatierBretonnien"
],
"license": "SEE LICENSE IN README.md",
"bugs": {
"url": "https://github.com/AutarchLLC/foundryvtt-acks-core/issues"
},
"homepage": "https://github.com/AutarchLLC/foundryvtt-acks-core#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@foundryvtt/foundryvtt-cli": "^3.0.3",
"@rollup/plugin-terser": "^1.0.0",
"autoprefixer": "^10.5.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"postcss": "^8.5.14",
"prettier": "3.8.3",
"prompts": "^2.4.2",
"rollup": "^4.60.4"
}
}