-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "fme",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"homepage": "https://github.com/dockfries/fme#readme",
"bugs": {
"url": "https://github.com/dockfries/fme/issues"
},
"license": "MIT",
"author": "dockfries",
"type": "module",
"scripts": {
"serve": "cross-env NODE_ENV=production pnpm exec ./omp-server",
"dev": "cross-env NODE_ENV=development npm-run-all -p -r -l dev:server dev:watch",
"dev:watch": "vite build -m development",
"dev:server": "nodemon -x \"pnpm exec ./omp-server\" -I -w dist/bundle.js",
"build": "cross-env NODE_ENV=production vite build",
"format": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky"
},
"dependencies": {
"@infernus/core": "^0.14.4",
"better-sqlite3": "^12.9.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@infernus/types": "^0.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.2",
"cross-env": "^10.1.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"node-gyp": "^12.3.0",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"source-map-support": "^0.5.21",
"typescript": "^6.0.3",
"vite": "^8.0.11"
},
"lint-staged": {
"*.{ts,js,json}": "pnpm run lint",
"*.{ts,js,json,yml}": "pnpm run format"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"engines": {
"node": ">=22.0.0"
}
}