-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
72
{
"name": "reactjs-s4y",
"version": "2.0.0",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"size": "npm run build && size-limit",
"lint": "eslint --ext .ts,.tsx src --color",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@hunghg255/eslint-config-react": "^0.0.7",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/node": "^20.2.3",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"rollup": "^3.23.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"size-limit": "^8.2.4",
"typescript": "^4.7.4"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"author": "hunghg255 <[email protected]>",
"license": "MIT",
"keywords": [
"react sticky"
],
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"size-limit": [
{
"path": "dist/esm/index.js",
"name": "Hi",
"import": "{ Hi }",
"limit": "3 KB"
},
{
"path": "dist/esm/index.js",
"name": "Hello",
"import": "{ Hello }",
"limit": "3 KB"
}
],
"homepage": "https://github.com/hunghg255/reactjs-s4y",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/reactjs-s4y"
},
"bugs": {
"url": "https://github.com/hunghg255/reactjs-s4y/issues"
}
}