-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.7 KB
/
package.json
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
{
"name": "animere",
"type": "module",
"version": "3.0.0",
"packageManager": "pnpm@8.10.5",
"description": "CSS-driven scroll-based animations",
"author": {
"name": "Johann Schopplich",
"email": "pkg@johannschopplich.com",
"url": "https://johannschopplich.com"
},
"license": "MIT",
"homepage": "https://github.com/johannschopplich/animere#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/animere.git"
},
"bugs": {
"url": "https://github.com/johannschopplich/animere/issues"
},
"keywords": [
"animation",
"animate.css",
"on-scroll",
"scroll-animation",
"scroll-story"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/animere.mjs",
"require": "./dist/animere.umd.js"
}
},
"main": "./dist/animere.umd.js",
"module": "./dist/animere.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly && shx rm -rf dist/docs",
"build:docs": "vite build --mode docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "tsc --noEmit && bumpp --all --commit --push --tag"
},
"devDependencies": {
"@antfu/eslint-config": "^2.0.0",
"@types/node": "^20.9.2",
"bumpp": "^9.2.0",
"duecss": "^0.31.3",
"eslint": "^8.54.0",
"lint-staged": "^15.1.0",
"sass": "^1.69.5",
"shx": "^0.3.4",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unocss": "^0.57.6",
"vite": "^5.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"src/**/*.ts": [
"eslint"
]
}
}