-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·116 lines (116 loc) · 3.26 KB
/
package.json
File metadata and controls
executable file
·116 lines (116 loc) · 3.26 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
{
"name": "@thednp/tween",
"version": "0.1.0",
"description": "🌸 A Typescript sourced tweening engine with Tween and Timeline",
"homepage": "https://github.com/thednp/tween",
"author": "thednp",
"license": "MIT",
"type": "module",
"sideEffects": false,
"browser": "./dist/tween.min.js",
"types": "./dist/tween/index.d.mts",
"files": [
"dist",
"package.json",
"AGENTS.md",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/tween/index.mjs",
"./preact": "./dist/preact/preact.mjs",
"./react": "./dist/react/react.mjs",
"./solid": "./dist/solid/solid.mjs",
"./svelte": "./dist/svelte/tween.svelte.js",
"./vanjs": "./dist/vanjs/vanjs.mjs",
"./vue": "./dist/vue/vue.mjs",
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/thednp/tween/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"pre-test": "pnpm clean-coverage",
"clean-coverage": "rm -rf coverage .nyc_output",
"test": "vitest",
"test-ui": "vitest --ui",
"format": "deno fmt src",
"lint": "pnpm lint:ts",
"lint:ts": "deno lint src",
"lint:types": "tsc --noEmit",
"fix:ts": "deno lint src --fix",
"build_": "tsdown && vite build",
"build": "tsdown",
"prepublishOnly": "pnpm update --latest && pnpm format && pnpm lint && pnpm build",
"clean:playground": "rm -rf playground/**/node_modules playground/**/package-lock.json playground/**/pnpm-lock.yaml playground/**/bun.lockb playground/**/deno.lock",
"clean:test": "rm -rf test/node_modules test/package-lock.json test/pnpm-lock.yaml test/bun.lockb test/deno.lock",
"clean": "rm -rf node_modules && pnpm clean:playground && pnpm clean:test",
"up-play": "for dir in playground/*/; do (cd \"$dir\" && pnpm update --latest); done;",
"update-deps": "pnpm clean && pnpm update --latest && pnpm up-play"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/tween.git"
},
"keywords": [
"tween",
"timeline",
"react",
"solid-js",
"svelte",
"preact",
"vue",
"vanjs",
"cubic-bezier",
"cubic-tween",
"easing",
"ease",
"easing functions",
"animation engine",
"animation",
"animations",
"svg-morphing",
"SSR",
"server-side rendering",
"typescript"
],
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-istanbul": "^4.1.2",
"@vitest/ui": "^4.1.2",
"happy-dom": "^20.8.9",
"react-dom": "^19.2.4",
"rollup-plugin-svelte": "^7.2.3",
"svelte-preprocess": "^6.0.3",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vite-plugin-strip-comments": "^0.0.10",
"vitest": "^4.1.2"
},
"dependencies": {
"@thednp/dommatrix": "^3.0.4",
"preact": "^10.29.1",
"react": "^19.2.4",
"solid-js": "^1.9.12",
"svelte": "^5.55.1",
"svg-path-commander": "^2.2.1",
"vanjs-core": "^1.6.0",
"vue": "^3.5.32"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20",
"pnpm": ">=8.6.0"
},
"inlinedDependencies": {
"svg-path-commander": "2.2.1"
}
}