-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 944 Bytes
/
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
{
"name": "state-controller",
"version": "1.3.5",
"description": "State management with React Hooks",
"source": "src/state-controller.tsx",
"main": "dist/state-controller.js",
"module": "dist/state-controller.mjs",
"unpkg": "dist/state-controller.umd.js",
"types": "dist/state-controller.d.ts",
"amdName": "stateController",
"files": [
"package.json",
"src",
"dist"
],
"author": "aardio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aardio/stateController.git"
},
"keywords": ["stateController"],
"sideEffects": false,
"scripts": {
"build": "microbundle --external react --globals react=React --strict --no-compress"
},
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"microbundle": "^0.11.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
}
}