-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "global-state-hook",
"version": "3.1.0",
"description": "Super tiny state sharing library with hooks",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.umd.js",
"dist/index.d.ts"
],
"amdName": "GlobalHookState",
"sideEffects": false,
"scripts": {
"format": "prettier --write '**/*.ts' '**/*.tsx'",
"example": "parcel example/index.html",
"build": "rm -rf dist && microbundle --external react --globals react=React --strict --no-compress"
},
"keywords": [],
"author": {
"name": "Minh Phan",
"email": "phanminh65@gmail.com"
},
"repository": {
"url": "git@github.com:paul-phan/global-state-hook.git",
"type": "git"
},
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"microbundle": "^0.15.1",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {}
}