-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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": "@seed-design/stackflow",
"version": "1.1.18",
"repository": {
"type": "git",
"url": "git+https://github.com/daangn/seed-design.git",
"directory": "packages/stackflow"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rm -rf lib",
"build": "vite build",
"lint:publish": "bun publint"
},
"dependencies": {
"@radix-ui/react-compose-refs": "^1.1.2",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-use-callback-ref": "^1.1.1",
"@seed-design/dom-utils": "1.0.0",
"@seed-design/react-primitive": "1.0.0",
"@stackflow/react-ui-core": "^1.3.3",
"clsx": "^2.1.1"
},
"devDependencies": {
"@seed-design/css": "1.2.5",
"@stackflow/core": "^1.2.0",
"@stackflow/react": "^1.5.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^5.0.0",
"globby": "^16.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.3"
},
"peerDependencies": {
"@seed-design/css": ">=1.1.19",
"@stackflow/core": ">=1.1.0",
"@stackflow/react": ">=1.4.1",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}