-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.82 KB
/
package.json
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
62
63
64
65
66
67
68
69
70
{
"name": "@daniely/ensemble",
"description": "Layout Ensemble",
"author": "Daniel Yogel",
"version": "0.4.13",
"license": "MIT",
"repository": "https://github.com/danielyogel/ensemble",
"type": "module",
"exports": {
".": "./dist/ensemble.es.js",
"./dist/style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "concurrently --group --raw \"vite\" \"tsc --noEmit --watch\" \"npm run ladle\" \"npm run test\"",
"build": "vite build && npm run build:types",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"ladle": "npx ladle serve",
"ladle:build": "npx ladle build --out dist-ladle",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=14.17"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ladle/react": "^2.10.1",
"@nextui-org/react": "^1.0.0-beta.12",
"ahooks": "^3.7.5",
"csstype": "^3.1.1",
"fp-ts": "^2.13.1",
"framer-motion": "^10.7.0",
"lodash": "^4.17.21",
"nanoid": "^4.0.1",
"tailwindcss": "^3.2.7",
"tsd": "^0.28.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/lodash": "^4.14.190",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/ws": "^8.5.3",
"@vitejs/plugin-react-swc": "^3.2.0",
"autoprefixer": "^10.4.14",
"classnames": "^2.3.2",
"concurrently": "^7.6.0",
"postcss": "^8.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"ts-toolbelt": "9.6.0",
"tslib": "^2.5.0",
"type-fest": "^3.6.1",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vitest": "^0.29.7"
},
"peerDependencies": {
"react": ">=16"
}
}