-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "quadratic-v2",
"module": "index.ts",
"type": "module",
"version": "0.1.3",
"files": [
"dist",
"react",
"server.ts"
],
"scripts": {
"build:css": "tailwindcss -i ./react/style.css -o ./dist/style.css"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@tailwindcss/cli": "^4.1.12",
"@types/bun": "latest",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.7",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.7",
"tailwindcss-animate": "^1.0.7"
},
"peerDependencies": {
"react": ">18",
"react-dom": ">18",
"typescript": "^5"
},
"dependencies": {
"@linear/sdk": "^57.0.0",
"@radix-ui/react-dialog": "^1.1.15",
"effect": "^3.17.9",
"zod": "^4.1.1"
},
"exports": {
"./server": {
"types": "./server.ts",
"default": "./dist/server.js"
},
"./react": {
"types": "./react/index.tsx",
"default": "./dist/index.js"
},
"./style.css": {
"default": "./dist/style.css"
}
}
}