-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "easing-scroll",
"version": "1.0.5",
"description": "♿️ Smooth scrolling",
"type": "module",
"types": "dist/easing-scroll.d.ts",
"exports": {
".": {
"types": "./dist/easing-scroll.d.ts",
"require": {
"types": "./dist/easing-scroll.d.cts",
"default": "./dist/easing-scroll.cjs"
},
"import": "./dist/easing-scroll.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"test": "vitest run",
"check-types": "tsc",
"build": "tsup src/easing-scroll.ts --format cjs,esm --dts --minify --clean",
"release:patch": "npm version patch",
"preversion": "npm run check-types && npm run build",
"postversion": "git add . && git push && git push --tags && npm publish",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faustienf/easing-scroll.git"
},
"keywords": [
"scroll",
"smooth",
"smooth-scroll",
"easing"
],
"author": "@faustien",
"license": "MIT",
"bugs": {
"url": "https://github.com/faustienf/easing-scroll/issues"
},
"homepage": "https://github.com/faustienf/easing-scroll#readme",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}