-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.94 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.94 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
{
"name": "@mkbabb/keyframes.js",
"version": "3.0.0",
"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",
"sideEffects": false,
"main": "./dist/keyframes.js",
"types": "./dist/keyframes.d.ts",
"exports": {
".": {
"types": "./dist/keyframes.d.ts",
"import": "./dist/keyframes.js",
"default": "./dist/keyframes.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build:lib",
"check": "tsc --noEmit",
"check:lib": "tsc --noEmit -p tsconfig.lib.json",
"dev": "vite",
"dev:playground": "vite --mode playground",
"build": "npm run build:lib",
"build:lib": "vite build --mode production",
"build:watch": "vite build --watch --mode production",
"gh-pages": "vite build --mode gh-pages",
"proof:boundary": "node scripts/proof-boundary.mjs",
"test": "vitest",
"bench": "vitest bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkbabb/keyframes.js.git"
},
"author": "",
"engines": {
"node": ">=22"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"bugs": {
"url": "https://github.com/mkbabb/keyframes.js/issues"
},
"homepage": "https://github.com/mkbabb/keyframes.js#readme",
"dependencies": {
"@mkbabb/parse-that": "^0.8.2",
"@mkbabb/value.js": "^0.10.0"
},
"optionalDependencies": {
"@mkbabb/glass-ui": "file:../glass-ui"
},
"devDependencies": {
"@iconify-json/radix-icons": "^1.2.6",
"@iconify/vue": "^5.0.1",
"@lucide/vue": "^1.17.0",
"@microsoft/api-extractor": "^7.58.7",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.9.1",
"@types/three": "^0.184.1",
"@unovis/ts": "^1.6.5",
"@unovis/vue": "^1.6.5",
"@vee-validate/zod": "^4.15.1",
"@vitejs/plugin-vue": "^6.0.7",
"@vueuse/core": "^14.3.0",
"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": "^29.1.1",
"monaco-editor": "^0.55.1",
"monaco-themes": "^0.4.8",
"prettier": "^3.8.3",
"prettier-plugin-classnames": "^0.10.2",
"prettier-plugin-merge": "^0.10.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"reka-ui": "^2.9.9",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"three": "^0.184.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"v-calendar": "^3.1.2",
"vaul-vue": "^0.4.1",
"vee-validate": "^4.15.1",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8",
"vue": "^3.5.35",
"vue-router": "^5.1.0",
"vue-sonner": "^2.0.9",
"zod": "^3.25.76"
}
}