This repository was archived by the owner on Aug 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.37 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
{
"name": "nte",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/dockfries/nte#readme",
"bugs": {
"url": "https://github.com/dockfries/nte/issues"
},
"license": "MIT",
"author": "dockfries",
"type": "module",
"scripts": {
"serve": "cross-env NODE_ENV=production pnpm exec ./omp-server",
"dev": "cross-env NODE_ENV=development run-p -r dev:server dev:watch",
"dev:watch": "vite build -m development",
"dev:server": "nodemon -x \"pnpm exec ./omp-server\" -I",
"build": "cross-env NODE_ENV=production vite build",
"format": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky"
},
"dependencies": {
"@infernus/core": "^0.14.7",
"better-sqlite3": "12.11.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@infernus/types": "^0.1.1",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^26.2.0",
"cross-env": "^10.1.0",
"globals": "^17.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"node-gyp": "^13.0.1",
"nodemon": "^3.1.14",
"npm-run-all2": "^9.0.3",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^7.0.2001",
"typescript": "^6.0.3",
"vite": "^8.2.2"
},
"lint-staged": {
"*.{ts,js}": "pnpm run lint",
"*.{ts,js,json,yml}": "pnpm run format"
},
"engines": {
"node": ">=22.0.0"
}
}