forked from vercel/v0-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.3 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.3 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
57
58
59
60
61
{
"name": "@v0-sdk/react",
"version": "0.5.0",
"description": "Headless React components for rendering v0 Platform API content",
"homepage": "https://v0.dev/docs/api",
"repository": {
"type": "git",
"url": "https://github.com/vercel/v0-sdk.git",
"directory": "packages/react"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"type-check": "tsc --noEmit",
"build": "bunchee",
"clean": "rm -rf dist *.tsbuildinfo",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "echo 'No linting configured for react package'"
},
"peerDependencies": {
"react": "^18.0.0 || >=19.2.1"
},
"devDependencies": {
"@types/react": "^19",
"bunchee": "^6.6.0",
"prettier": "^3.3.3",
"typescript": "^5.7.3"
},
"keywords": [
"v0",
"platform",
"api",
"react",
"renderer",
"sdk"
],
"author": "Vercel",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"jsondiffpatch": "^0.7.3"
}
}