-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "react-mega-scroll",
"version": "1.0.19",
"description": "React full page scroller",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc && cp -R ./src/index.css ./lib/index.css",
"release": "npm run build && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NxRoot/react-mega-scroll.git"
},
"bugs": {
"url": "https://github.com/NxRoot/react-mega-scroll/issues"
},
"homepage": "https://github.com/NxRoot/react-mega-scroll#readme",
"keywords": [
"react",
"scroll",
"typescript"
],
"author": "NxRoot",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.14",
"typescript": "^4.7.3"
},
"peerDependencies": {
"react": "*"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/index.css"
],
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib"
}
}