-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "v0-sdk-monorepo",
"version": "0.8.0",
"private": true,
"description": "Monorepo for v0 Platform SDKs",
"homepage": "https://v0.dev/docs/api",
"repository": {
"type": "git",
"url": "https://github.com/vercel/v0-sdk.git"
},
"scripts": {
"build": "turbo build",
"build:packages": "turbo build --filter=@v0-sdk/* --filter=v0-sdk",
"dev": "turbo dev",
"lint": "turbo lint --filter=@v0-sdk/* --filter=v0-sdk --filter=create-v0-sdk-app",
"test": "turbo test --filter=@v0-sdk/* --filter=v0-sdk",
"test:watch": "turbo test:watch",
"type-check": "turbo type-check --filter=@v0-sdk/* --filter=v0-sdk --filter=create-v0-sdk-app",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"sdk:generate": "turbo run sdk:generate",
"changeset": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:release": "turbo clean && turbo build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"prismjs@<1.30.0": ">=1.30.0"
}
}
}