-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "@alinea/components",
"version": "0.0.50",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alineacms/components.git"
},
"license": "MIT",
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./css": {
"types": "./dist/empty.d.ts",
"node": "./dist/empty.js",
"default": "./dist/index.css"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"react-aria-components": "^1.16.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@ladle/react": "^5.0.3",
"@playwright/experimental-ct-react": "^1.55.0",
"@playwright/test": "^1.55.0",
"@types/bun": "^1.1.14",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"dtsroll": "^1.4.1",
"esbuild": "^0.25.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.7.3",
"vite": "^8.0.0-beta.14"
},
"scripts": {
"release": "bun release.ts",
"dev": "ladle serve",
"build": "ladle build",
"test": "bunx playwright test",
"package": "bun package.ts",
"prepublishOnly": "bun package.ts"
}
}