-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 950 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
{
"name": "animated-java-ci",
"version": "1.0.0",
"private": true,
"description": "GitHub Action that headlessly builds Animated Java blueprints with Blockbench.",
"license": "MIT",
"author": "Titus Evans (SnaveSutit) <snavesutit@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Animated-Java/animated-java-ci"
},
"type": "module",
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node20 --format=cjs --outfile=dist/index.cjs --banner:js=\"/* Generated by \\`bun run build\\` - edit src/ instead. */\"",
"typecheck": "tsc --noEmit",
"test": "bun test",
"format": "prettier --write .",
"check-formatting": "prettier . --check"
},
"dependencies": {
"envbench": "^4.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bun": "^1.4.0",
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"esbuild": "^0.24.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0"
}
}