-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "voidstudio",
"version": "0.1.0",
"private": true,
"description": "AI-powered video creation system",
"author": "Buildingvibes",
"license": "MIT",
"homepage": "https://github.com/Buildingvibes/voidstudio",
"repository": {
"type": "git",
"url": "https://github.com/Buildingvibes/voidstudio.git"
},
"bugs": {
"url": "https://github.com/Buildingvibes/voidstudio/issues"
},
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:coverage": "turbo run test:coverage",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "echo 'Ready'",
"cli": "pnpm --filter @voidstudio/cli run start",
"void": "pnpm --filter @voidstudio/cli run start"
},
"devDependencies": {
"@types/node": "^20.11.0",
"prettier": "^3.2.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}