-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "@nekocode/use-shared-state",
"version": "1.7.1",
"description": "React hook for sharing state between components.",
"scripts": {
"test": "jest",
"build": "pika build",
"release": "yarn build && cd pkg && yarn publish --access public",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"keywords": [
"react",
"context",
"state"
],
"author": "nekocode",
"repository": "[email protected]:nekocode/use-shared-state.git",
"homepage": "https://github.com/nekocode/use-shared-state",
"license": "MIT",
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-node"
]
]
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "~5.3.2",
"jest-environment-jsdom": "~29.7.0"
},
"peerDependencies": {
"react": ">=17.0.2"
}
}