-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 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
60
61
62
63
64
65
66
67
68
{
"name": "@minstack/factor",
"description": "Minimal shared dynamic states by hoisting React Hooks up to React Contexts.",
"author": "Chris Ackerman <chris@topher.land>",
"license": "ISC",
"version": "1.0.6",
"keywords": [
"react",
"state",
"context",
"hook",
"hoist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/theminstack/factor.git"
},
"files": [
"lib/**"
],
"directories": {
"lib": "lib"
},
"type": "module",
"types": "lib/types/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
}
},
"sideEffects": false,
"scripts": {
"start": "vite --force --host",
"test": "del-cli out && rc test -o",
"prepack": "del-cli lib *.tgz && rc build",
"modernize": "npx npm-check-updates -i --format group"
},
"devDependencies": {
"@jest/globals": "^29.3.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.2.0",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"eslint-config-rational": "^2.0.6",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"parallel-rc": "^1.0.12",
"prettier": "^2.7.1",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vite-plugin-full-reload": "^1.0.4"
},
"peerDependencies": {
"react": ">=16"
}
}