-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
{
"name": "streammind-ai",
"version": "0.1.0",
"private": true,
"description": "AI-powered streaming discovery layer built with a scalable architecture.",
"author": "DaviStarlight (https://github.com/DaviStarlight/)",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@9.1.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.11.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"turbo": "^2.0.0",
"typescript": "^5.4.0",
"vitest": "^1.3.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}