-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.98 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nanoforge-example-template",
"version": "0.0.0",
"description": "NanoForge Loader - Web",
"homepage": "https://github.com/NanoForge-dev/Loader#readme",
"license": "MIT",
"contributors": [
"Bill",
"Exelo",
"Fexkoser",
"Tchips"
],
"funding": {
"type": "individual",
"url": ""
},
"type": "module",
"module": "src/index.ts",
"browser": true,
"repository": {
"type": "git",
"url": "git+https://github.com/NanoForge-dev/Loader.git",
"directory": "apps/web"
},
"private": true,
"scripts": {
"setup": "bun i",
"build": "bun run clean && bun run build:raw",
"build:raw": "bun build src/index.ts --outdir dist --asset-naming \"[name].[ext]\"",
"clean": "rm -rf dist",
"lint": "eslint . && prettier --check . '!.cloud/**'",
"format": "eslint . --fix && prettier --write . '!.cloud/**'",
"lint-staged": "lint-staged"
},
"dependencies": {
"@nanoforge-dev/asset-manager": "workspace:^",
"@nanoforge-dev/common": "workspace:^",
"@nanoforge-dev/config": "workspace:^",
"@nanoforge-dev/core": "workspace:^",
"@nanoforge-dev/ecs-client": "workspace:^",
"@nanoforge-dev/graphics-2d": "workspace:^",
"@nanoforge-dev/input": "workspace:^",
"@nanoforge-dev/sound": "workspace:^"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/bun": "latest",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"typescript-eslint": "^8.47.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": "24.11.0",
"bun": "1.3.2"
},
"packageManager": "bun@1.3.2",
"lint-staged": {
"**/*.{js,ts,html,css}": [
"eslint --fix",
"prettier --write"
]
},
"workspaces": [
".",
"../../packages/*",
"../../libs/*",
"../../utils/*"
]
}