-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 2.15 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
{
"private": true,
"type": "module",
"name": "pf2ools-data",
"version": "0.0.1",
"devDependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"prettier": "^3.4.2"
},
"scripts": {
"test": "npm run test:fileStructure && npm run test:data",
"test:fileStructure": "node ./scripts/test-fileStructure.js",
"test:data": "echo \"TODO: this will simply validate all data against the schema (breaking early)\"",
"clean": "npm run clean:json -- -rc ./data && npm run clean:prettify -- --log-level warn",
"clean:json": "node ./scripts/clean-json.js",
"clean:prettify": "npx prettier . --write --cache",
"index": "npm run index:datatypes -- -Compress && npm run index:IDs -- -IgnoreCollisions -Compress && npm run index:shortNames -- -Compress && npm run index:homebrewSources -- -Compress && npm run index:UUIDs -- -Compress",
"index:IDs": "pwsh scripts/index-IDs.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"index:datatypes": "pwsh scripts/index-datatypes.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"index:shortNames": "pwsh scripts/index-shortNames.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"index:homebrewSources": "pwsh scripts/index-homebrewSources.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"index:UUIDs": "pwsh scripts/index-UUIDs.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"bundle": "npm run bundle:bySource -- -Compress && npm run bundle:byDatatype -- -Compress -SkipEmpty",
"bundle:bySource": "pwsh scripts/bundle-bySource.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"bundle:byDatatype": "pwsh scripts/bundle-byDatatype.ps1 -ExecutionPolicy Unrestricted -NoProfile",
"build": "npm i && npm run test && npm run clean && npm run index && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pf2ools/pf2ools-data.git"
},
"author": "The Pf2ools project",
"description": "The Pf2ools ecosystem's repository of Pathfinder 2nd Edition game data.",
"keywords": [
"pathfinder",
"pathfinder2e",
"rpg",
"ttrpg",
"pf2ools",
"data"
],
"license": "MIT",
"homepage": "https://github.com/Pf2ools/pf2ools-data#README",
"bugs": {
"url": "https://github.com/Pf2ools/pf2ools-data/issues"
}
}