-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "projectfu",
"version": "#{VERSION}#",
"description": "CSS compiler for the Fabula Ultima system",
"type": "module",
"scripts": {
"prettier": "prettier --write .",
"lint": "eslint --fix .",
"unpack": "node ./tools/pushLDBtoYML.mjs",
"pack": "node ./tools/pullYMLtoLDB.mjs",
"downloadcsv": "node ./tools/csvtojson/download-csv.mjs",
"c2j": "node ./tools/csvtojson/convert-csv-to-json.mjs && prettier --write .",
"j2c": "node ./tools/jsontocsv/convert-json-to-csv.mjs && prettier --write .",
"localize": "npm run downloadcsv && npm run c2j",
"prepare": "husky",
"test": "vitest run"
},
"browserslist": [
"last 3 versions"
],
"author": "League of Fabulous Developers",
"license": "MIT",
"private": true,
"dependencies": {
"rpg-awesome": "0.2.0"
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@foundryvtt/foundryvtt-cli": "3.0.0",
"axios": "1.13.0",
"eslint": "9.38.0",
"eslint-config-prettier": "10.1.8",
"globals": "16.4.0",
"husky": "9.1.7",
"papaparse": "5.5.3",
"prettier": "3.6.2",
"vitest": "^4.1.0"
}
}