-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·102 lines (102 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "motion-start",
"version": "0.1.3",
"description": "Svelte animation library inspired by the React library framer-motion.",
"license": "MIT",
"author": {
"name": "JonathonRP",
"url": "https://github.com/JonathonRP"
},
"repository": {
"type": "git",
"ur": "https://github.com/JonathonRP/motion-start.git"
},
"type": "module",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"module": "./dist/index.js",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./MotionSSR.svelte": {
"types": "./dist/motion/MotionSSR.svelte.d.ts",
"svelte": "./dist/motion/MotionSSR.svelte"
}
},
"scripts": {
"dev": "vite dev",
"build": "vite build && bun --bun package",
"package": "svelte-kit sync && svelte-package --input ./src/lib/motion-start && publint --strict",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"lint": "biome check",
"test": "vitest",
"test:types": "vitest --typecheck.only",
"test:ui": "vitest --ui",
"test:types:ui": "vitest --ui",
"release": "bun --bun run build && bun --bun changeset publish"
},
"dependencies": {
"bits-ui": "^0.21.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framesync": "^6.1.2",
"lucide-svelte": "^0.453.0",
"mode-watcher": "^0.5.0",
"popmotion": "^11.0.5",
"style-value-types": "5.1.2",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@biomejs/biome": "^1.9.4",
"@emotion/is-prop-valid": "^1.3.1",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^4.0.2",
"svelte-check": "^4.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^20.17.9",
"@vitest/ui": "latest",
"csstype": "^3.1.3",
"publint": "^0.2.12",
"typescript": "^5.7.2",
"vite": "5.4.11",
"vitest": "latest",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "2.7.1",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0-alpha.28",
"tailwindcss": "^4.0.0-alpha.28"
},
"peerDependencies": {
"svelte": "^5.5.3"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20"
},
"sideEffects": false,
"keywords": [
"svelte animation",
"svelte",
"animation",
"gestures",
"drag",
"spring",
"popmotion",
"framer-motion"
],
"trustedDependencies": [
"@biomejs/biome",
"@sveltejs/kit",
"esbuild"
]
}