-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "@hya/micro-state",
"version": "0.0.6",
"description": "Tiny, global, efficient, hook-based state management for React",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cristiano-belloni/micro-state"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "exit 0",
"start": "npm run clean && rollup -cw",
"build": "npm run clean && eslint src/** && rollup -c",
"publish": "npm run build && np",
"clean": "rimraf ./dist"
},
"keywords": [
"store",
"state",
"micro",
"react",
"hooks"
],
"peerDependencies": {
"react": ">16.8.0"
},
"devDependencies": {
"@types/react": ">16.8.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"esbuild": "^0.13.9",
"eslint": "^8.1.0",
"eslint-plugin-react": "^7.26.1",
"np": "^7.5.0",
"prettier": "2.4.1",
"react": ">16.8.0",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "^4.6.0",
"typescript": "^4.4.4"
},
"author": "Cristiano Belloni <[email protected]>",
"license": "MIT"
}