-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "solid-motion",
"version": "1.0.0-alpha.8",
"description": "A modern animation library for SolidJs",
"license": "MIT",
"author": "Yefu <243249439@qq.com>;",
"contributors": [
"Yefu <243249439@qq.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/yefu24324/solid-motion"
},
"private": false,
"sideEffects": false,
"scripts": {
"dev": "vite",
"prepublishOnly": "pnpm build",
"build": "tsup",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check --write"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"dependencies": {
"@solid-primitives/media": "^2.3.3",
"@solid-primitives/refs": "^1.0.8",
"@solid-primitives/transition-group": "^1.0.5",
"es-toolkit": "^1.39.10",
"framer-motion": "^12.23.12",
"hey-listen": "^1.0.8",
"motion": "^12.23.12",
"motion-dom": "^12.23.12",
"motion-utils": "^12.23.6"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^20.10.6",
"clsx": "^2.1.1",
"cva": "1.0.0-beta.4",
"lucide-solid": "^0.540.0",
"solid-js": "^1.8.17",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.12",
"tsup": "^8.0.1",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.3.3",
"vite": "7.1.2",
"vite-plugin-solid": "2.11.8",
"vite-tsconfig-paths": "5.1.4"
},
"peerDependencies": {
"solid-js": "^1.8.0"
},
"packageManager": "pnpm@10.9.0"
}