-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "react-nil",
"version": "1.2.0",
"description": "A react custom renderer that renders nothing but logical components",
"keywords": [
"react",
"null",
"nil",
"renderer",
"node"
],
"author": "Cody Bennett (https://github.com/codyjasonbennett)",
"maintainers": [
"Paul Henschel (https://github.com/drcmda)",
"Gianmarco Simone (https://github.com/gsimone)",
"Stephen Corwin (https://github.com/stephencorwin)"
],
"homepage": "https://github.com/pmndrs/react-nil",
"repository": "https://github.com/pmndrs/react-nil",
"license": "MIT",
"files": [
"dist/*",
"src/*"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"sideEffects": false,
"devDependencies": {
"@types/node": "^18.7.14",
"@types/react": "^18.0.17",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"suspend-react": "^0.0.8",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vitest": "^0.22.1"
},
"dependencies": {
"@types/react-reconciler": "^0.26.7",
"react-reconciler": "^0.27.0"
},
"peerDependencies": {
"react": ">=18.0"
},
"scripts": {
"build": "rimraf dist && vite build && tsc",
"test": "vitest run"
}
}