-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·126 lines (126 loc) · 3.29 KB
/
package.json
File metadata and controls
executable file
·126 lines (126 loc) · 3.29 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "motion-start",
"version": "0.1.21",
"description": "Svelte animation library inspired by the React library framer-motion.",
"license": "MIT",
"author": {
"name": "JonathonRP",
"url": "https://github.com/JonathonRP"
},
"repository": "github:JonathonRP/motion-start",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js",
"module": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./src/context/MotionContext": {
"types": "./dist/context/MotionContext/index.d.ts",
"svelte": "./dist/context/MotionContext/index.js",
"import": "./dist/context/MotionContext/index.js",
"default": "./dist/context/MotionContext/index.js"
},
"./src/motion": {
"types": "./dist/motion/index.d.ts",
"svelte": "./dist/motion/index.js",
"import": "./dist/motion/index.js",
"default": "./dist/motion/index.js"
},
"./src/render": {
"types": "./dist/render/index.d.ts",
"svelte": "./dist/render/index.js",
"import": "./dist/render/index.js",
"default": "./dist/render/index.js"
},
"./src/value": {
"types": "./dist/value/index.d.ts",
"svelte": "./dist/value/index.js",
"import": "./dist/value/index.js",
"default": "./dist/value/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"type": "module",
"scripts": {
"dev": "vite dev",
"build docs": "vite build",
"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 && npm publish --access public && npx changeset tag"
},
"dependencies": {
"framesync": "^6.1.2",
"popmotion": "^11.0.5",
"style-value-types": "5.1.2"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@changesets/cli": "^2.27.10",
"@emotion/is-prop-valid": "^1.3.1",
"@lucide/svelte": "^0.544.0",
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.3.11",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^20.17.9",
"@vitest/ui": "latest",
"bits-ui": "^2.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csstype": "^3.1.3",
"lucide-svelte": "^0.542.0",
"mode-watcher": "^1.1.0",
"publint": "^0.3.0",
"svelte-check": "^4.1.1",
"tailwind-merge": "^3.0.0",
"tailwind-variants": "^3.1.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"vite": "^7.0.0",
"vitest": "latest"
},
"peerDependencies": {
"svelte": "^5.33.16"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=20"
},
"keywords": [
"svelte animation",
"svelte",
"animation",
"gestures",
"drag",
"spring",
"popmotion",
"framer-motion"
],
"trustedDependencies": [
"@biomejs/biome",
"@sveltejs/kit",
"esbuild"
]
}