This repository was archived by the owner on Apr 12, 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
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 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
{
"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-all": "prettier \"src/**/*.ts\" --write",
"lint-all": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky"
},
"dependencies": {
"@infernus/core": "^0.14.4",
"better-sqlite3": "^12.8.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@infernus/types": "^0.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"cross-env": "^10.1.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"node-gyp": "^12.2.0",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.2",
"source-map-support": "^0.5.21",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.8"
},
"lint-staged": {
"*.{ts,json,js}": [
"eslint --fix"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"engines": {
"node": ">=22.0.0"
}
}