-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.89 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.89 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": "@mkbabb/keyframes.js",
"version": "6.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,
"types": "./dist/keyframes.d.ts",
"exports": {
".": {
"types": "./dist/keyframes.d.ts",
"default": "./dist/keyframes.js"
},
"./engine": {
"types": "./dist/engine/index.d.ts",
"default": "./dist/engine/index.js"
}
},
"files": [
"dist",
"!dist/gh-pages",
"!dist/_*"
],
"scripts": {
"prepare": "npm run build:lib",
"check": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json && npm run proof:structure",
"check:lib": "tsc --noEmit -p tsconfig.lib.json",
"dev": "vite",
"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",
"lint": "depcruise src",
"test": "vitest",
"test:lib": "vitest run --project library",
"bench": "vitest bench",
"bench:color-fidelity": "vitest run test/engine/color-fidelity.test.ts && node scripts/color-fidelity-harness.mjs",
"gen:agent-surface": "node scripts/gen-agent-surface.mjs",
"proof:structure": "node scripts/gates/structure/index.mjs",
"proof:publish": "node scripts/gates/surface/index.mjs",
"proof:owner-golden": "node scripts/gates/visual/index.mjs",
"demo:correctness": "node scripts/run-demo-roster.mjs",
"audit:lighthouse": "node scripts/observe/lighthouse.mjs",
"release:changelog": "node scripts/release/changelog.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkbabb/keyframes.js.git"
},
"author": "Mike Babb <mike@babb.dev>",
"engines": {
"node": ">=22"
},
"bugs": {
"url": "https://github.com/mkbabb/keyframes.js/issues"
},
"homepage": "https://github.com/mkbabb/keyframes.js#readme",
"dependencies": {
"@mkbabb/value.js": "4.0.0"
},
"devDependencies": {
"@iconify-json/radix-icons": "^1.2.6",
"@iconify/vue": "^5.0.1",
"@lucide/vue": "^1.17.0",
"@microsoft/api-extractor": "^7.58.7",
"@mkbabb/glass-ui": "7.0.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^22.20.0",
"@types/three": "^0.184.1",
"@vitejs/plugin-vue": "^6.0.7",
"@vueuse/core": "^14.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dependency-cruiser": "^18.0.0",
"fast-check": "^4.8.0",
"gl-matrix": "^3.4.4",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"jsdom": "^29.1.1",
"monaco-editor": "^0.55.1",
"monaco-themes": "^0.4.8",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"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",
"rolldown": "^1.0.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"three": "^0.184.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vite-svg-loader": "^5.1.0",
"vitest": "^4.1.8",
"vue": "^3.5.35",
"vue-router": "^5.1.0",
"vue-sonner": "^2.0.9",
"yaml": "^2.9.0"
}
}