-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "@protonko/section-list",
"description": "Component for rendering sectioned lists",
"keywords": [
"react",
"list",
"section list"
],
"repository": "https://github.com/Protonko/section-list",
"author": {
"email": "probegrofanston@gmail.com",
"name": "Egor Ermolaev"
},
"private": false,
"license": "MIT",
"version": "0.1.32",
"dependencies": {
"core-js": "3.22.8"
},
"peerDependencies": {
"react": "^17.0.0 || ^18",
"react-dom": "^17.0.0 || ^18"
},
"scripts": {
"prepublish": "tsc",
"start": "react-scripts start",
"build": "npm run prepublish && rm -rf dist/index.* && babel package.json LICENSE README.md dist/lib --out-dir dist --copy-files && rm -rf dist/demo rm -rf dist/lib && rm -rf dist/App.*",
"build:demo": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.18.2",
"@types/node": "17.0.36",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"babel-dts-generator": "0.6.3",
"typescript": "4.7.2"
}
}