This repository was archived by the owner on Oct 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "@truestarhq/api",
"version": "0.1.0",
"main": "dist/index.js",
"license": "Elastic-2.0",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"check": "tsc --noEmit -p test/tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/error": "^4.2.0",
"@fastify/request-context": "^6.2.0",
"@fastify/static": "^8.2.0",
"@truestarhq/shared-types": "github:truestarhq/shared-types",
"dotenv": "^16.5.0",
"fastify": "^5.1.0",
"openai": "^4.104.0",
"pino": "^9.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "~5.8.3",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}