-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "scroll-snap",
"version": "4.0.5",
"description": "Snap page when user stops scrolling, with a customizable configuration and a consistent cross browser behaviour",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist/esm"
],
"author": {
"name": "Luca Falasco",
"email": "[email protected]",
"url": "https://lucafalasco.com"
},
"repository": {
"type": "git",
"url": "https://github.com/lucafalasco/scroll-snap.git"
},
"keywords": [
"scroll",
"scrolling",
"snap",
"scrollsnap",
"pagesnap",
"custom"
],
"bugs": {
"url": "https://github.com/lucafalasco/scroll-snap/issues"
},
"license": "MIT",
"homepage": "https://github.com/lucafalasco/scroll-snap",
"devDependencies": {
"del-cli": "^3.0.0",
"mkdirp": "^1.0.3",
"path": "^0.12.7",
"ts-loader": "^6.2.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"start": "webpack-dev-server",
"build": "tsc -p ./tsconfig.esm.json && tsc -p ./tsconfig.umd.json",
"prebuild": "mkdirp dist && del ./dist/*",
"prepare": "yarn build"
},
"packageManager": "[email protected]"
}