-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "go-split",
"version": "3.4.7",
"description": "Splitter for React",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"src",
"lib",
"lib/index.d.ts"
],
"scripts": {
"build": "tsc",
"publish:beta": "npm run build & npm publish -tag beta",
"publish:alpha": "npm run build & npm publish -tag alpha",
"publish:rc": "npm run build & npm publish -tag rc",
"publish:latest": "npm run build & npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wroud/go-split.git"
},
"keywords": [
"react",
"typescript",
"split",
"splitter"
],
"author": "Wroud",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wroud/go-split/issues"
},
"homepage": "https://github.com/Wroud/go-split#readme",
"dependencies": {},
"peerDependencies": {
"react": "^16.14 || ^17.0 || ^18.0",
"react-dom": "^16.14 || ^17.0 || ^18.0"
},
"devDependencies": {
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"typescript": "^4.7.3"
}
}