-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.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
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
{
"name": "cube-motion",
"version": "0.1.0",
"description": "Four motions, no dials. rise, leave, morph and reveal on the Web Animations API, with React, Vue, Solid and Svelte adapters.",
"type": "module",
"license": "MIT",
"author": "Daniel Belyi",
"repository": "github:danielwh2/cube-motion",
"homepage": "https://github.com/danielwh2/cube-motion-site",
"keywords": [
"animation",
"motion",
"waapi",
"web-animations",
"react",
"reduced-motion",
"entrance",
"morph",
"reveal",
"solid",
"exit",
"transition",
"vue",
"svelte"
],
"sideEffects": false,
"files": [
"dist",
"examples",
"README.md",
".github/agent.md",
"LICENSE"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
},
"./solid": {
"types": "./dist/solid.d.ts",
"import": "./dist/solid.js"
},
"./vue": {
"types": "./dist/vue.d.ts",
"import": "./dist/vue.js"
},
"./svelte": {
"types": "./dist/svelte.d.ts",
"import": "./dist/svelte.js"
},
"./agent.md": "./.github/agent.md"
},
"peerDependencies": {
"react": ">=18 <20",
"solid-js": ">=1.8 <2",
"svelte": ">=4 <6",
"vue": ">=3.4 <4"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"solid-js": {
"optional": true
},
"vue": {
"optional": true
},
"svelte": {
"optional": true
}
},
"scripts": {
"prepack": "npm run build",
"build": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" && node scripts/skill.mjs && tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit && tsc -p tests/tsconfig.json",
"pack:check": "node scripts/pack-check.mjs",
"test": "vitest run"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.7",
"happy-dom": "^20.10.2",
"react": "^19.2.7",
"react-dom": "^19.2.8",
"solid-js": "^1.9.13",
"svelte": "^5.56.3",
"typescript": "^5.8.3",
"vitest": "^4.1.8",
"vue": "^3.5.35"
}
}