-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 822 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
33
34
{
"name": "voidtrace",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.17.1",
"dependencies": {
"commander": "^14.0.3",
"dotenv": "^17.2.4"
},
"devDependencies": {
"@types/node": "^25.2.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"type": "module",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest"
}
}