-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.58 KB
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
{
"name": "@twocatmoon/react-actions",
"private": false,
"version": "3.0.1",
"description": "A dead-simple and boiler-plate free state management strategy for React.",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.umd.js"
}
}
},
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"dist/index.d.ts"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc --project tsconfig.build.json && npm run docs:build",
"docs:dev": "npm run docs:build & npx http-server docs",
"docs:build": "npx typedoc src/lib/index.tsx --customCss ./docStyles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twocatmoon/react-actions.git"
},
"keywords": [
"react",
"state management",
"store",
"redux",
"context api",
"event bus",
"actions"
],
"author": "Jordan Ranson",
"license": "MIT",
"bugs": {
"url": "https://github.com/twocatmoon/react-actions/issues"
},
"homepage": "https://github.com/twocatmoon/react-actions#readme",
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"typedoc": "^0.22.13",
"typescript": "^4.5.4",
"vite": "^2.8.0"
}
}