-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.68 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
{
"name": "data-anim",
"version": "1.1.0",
"description": "Animate with just HTML. Powered by data attributes.",
"type": "module",
"packageManager": "pnpm@10.11.0",
"main": "dist/data-anim.js",
"module": "dist/data-anim.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/data-anim.esm.js",
"require": "./dist/data-anim.js"
}
},
"unpkg": "dist/data-anim.min.js",
"jsdelivr": "dist/data-anim.min.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "oxlint src/",
"lint:fix": "oxlint --fix src/",
"format": "oxfmt --write src/ tests/",
"format:check": "oxfmt --check src/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"check": "pnpm lint && pnpm format:check && pnpm test && pnpm build",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build"
},
"keywords": [
"animation",
"css",
"data-attributes",
"scroll",
"intersection-observer",
"anti-fouc",
"zero-js",
"declarative",
"hover",
"stagger"
],
"author": "ryo-manba",
"funding": "https://github.com/ryo-manba/data-anim?sponsor=1",
"homepage": "https://ryo-manba.github.io/data-anim/",
"repository": {
"type": "git",
"url": "https://github.com/ryo-manba/data-anim"
},
"engines": {
"node": ">=24"
},
"license": "MIT",
"devDependencies": {
"happy-dom": "^20.8.4",
"oxfmt": "^0.40.0",
"oxlint": "1.55.0",
"puppeteer": "^24.39.1",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-dts": "^4.0.0",
"vitest": "^4.1.0"
}
}