-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1006 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1006 Bytes
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
{
"name": "deadforge-assets",
"version": "1.0.0",
"devDependencies": {
"@eslint/json": "^0.12.0",
"@octokit/rest": "^20.0.2",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"eslint": "^9.27.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsonc": "^2.20.1",
"jsonc-eslint-parser": "^2.4.0",
"jsonc-parser": "^3.3.1"
},
"description": "Assets for the DeadForge project",
"engines": {
"bun": ">=1.0.0"
},
"private": true,
"scripts": {
"build": "bun run scripts/build_games.js",
"download-and-hash": "bun run scripts/download-and-hash.js",
"predeploy": "bun run build && bun run download-and-hash",
"deploy": "echo uwu",
"postdeploy": "bun run scripts/clean_dir.ts",
"verify": "bun run scripts/verifyJSON.ts",
"lint": "eslint",
"update-readme": "bun run scripts/update_readme_table.ts"
},
"dependencies": {
"@types/glob": "^8.1.0"
}
}