-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.08 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.08 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
{
"name": "@mkbabb/keyframes.js",
"version": "1.1.6",
"description": "Create keyframe animations for anything in JavaScript; specify your keyframes in standards-complaint CSS.",
"license": "MIT",
"keywords": [
"keyframes",
"keyframes-library",
"animation",
"css",
"css-animations",
"typescript",
"web",
"browser",
"parsing"
],
"type": "module",
"main": "./dist/keyframes.js",
"module": "./dist/keyframes.js",
"types": "./dist/keyframes.d.ts",
"exports": {
".": {
"types": "./dist/keyframes.d.ts",
"import": "./dist/keyframes.js",
"require": "./dist/keyframes.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"dev:playground": "vite --mode playground",
"build": "vite build --mode production",
"gh-pages": "vite build --mode gh-pages",
"test": "vitest",
"bench": "vitest bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkbabb/keyframes.js.git"
},
"author": "",
"engines": {
"node": ">=22"
},
"bugs": {
"url": "https://github.com/mkbabb/keyframes.js/issues"
},
"homepage": "https://github.com/mkbabb/keyframes.js#readme",
"dependencies": {
"@mkbabb/parse-that": "latest",
"@mkbabb/value.js": "latest"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@iconify-json/radix-icons": "^1.1.14",
"@iconify/vue": "^4.1.2",
"@tailwindcss/postcss": "^4.1",
"@types/node": "^24.1.0",
"@types/three": "^0.166.0",
"@unovis/ts": "^1.5.2",
"@unovis/vue": "^1.5.2",
"@vee-validate/zod": "^4.13.2",
"@vitejs/plugin-vue": "^6.0.0",
"@vueuse/core": "^14.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-vue": "^8.6.0",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"jsdom": "^26.1.0",
"lucide-vue-next": "^0.525.0",
"monaco-editor": "^0.50.0",
"monaco-themes": "^0.4.4",
"prettier": "^3.6.2",
"prettier-plugin-classnames": "^0.7.0",
"prettier-plugin-merge": "^0.7.0",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"reka-ui": "^2.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"three": "^0.166.1",
"tw-animate-css": "^1.2.5",
"typescript": "^5.8.3",
"v-calendar": "^3.1.2",
"vaul-vue": "^0.2.0",
"vee-validate": "^4.13.2",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"vue": "^3.5.18",
"vue-sonner": "^1.1.3",
"zod": "^3.23.8"
}
}