-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 743 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 743 Bytes
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
{
"name": "react-performance-context",
"description": "A Simple implementation of react context for sharing an object between components without causing unnecessary rendering",
"version": "0.0.18",
"main": "build/index.js",
"types": "build/index.d.ts",
"private": false,
"keywords": [],
"author": "Natan Farkash",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/natqe/react-performance-context.git"
},
"peerDependencies": {
"react": "17.0.2"
},
"devDependencies": {
"@types/node": "16.9.1",
"@types/react": "17.0.20",
"typescript": "4.4.3"
},
"scripts": {
"build": "rm -rf build && tsc && npm version patch"
},
"files": [
"build",
"src"
]
}