-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "@galaxis/react",
"description": "React bindings for Galaxis.",
"keywords": [
"galaxis",
"react",
"react-hooks",
"ssr"
],
"version": "0.2.1",
"repository": "github:fenok/galaxis",
"license": "MIT",
"author": "Leonid Fenko <fenok2112@gmail.com>",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prepack": "yarn build",
"prepublish": "yarn lint",
"build": "rimraf ./dist && tsc",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,ts,tsx,json,md,*rc}\"",
"publish": "yarn npm publish --tolerate-republish"
},
"dependencies": {
"@galaxis/core": "^0.2.2"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
}
}