-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "easing-scroll",
"version": "1.0.3",
"description": "♿️ Smooth scrolling",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./easing-scroll": {
"require": "./dist/easing-scroll.js",
"import": "./dist/easing-scroll.mjs",
"default": "./dist/easing-scroll.mjs"
}
},
"scripts": {
"check-types": "tsc",
"clean": "rm -r dist/*",
"build": "npm run clean && rollup -c",
"release:patch": "npm version patch",
"preversion": "npm run check-types && npm run build",
"postversion": "git add . && git push && git push --tags && npm publish"
},
"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",
"prettier": {},
"devDependencies": {
"esbuild": "^0.16.12",
"rollup": "^3.9.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.4"
}
}