-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "@ivbrajkovic/observable-context",
"author": "Ivan Brajković",
"description": "Simple reactive context state",
"license": "ISC",
"version": "1.0.21",
"repository": {
"type": "git",
"url": "git+https://github.com/ivbrajkovic/observable-context.git"
},
"bugs": {
"url": "https://github.com/ivbrajkovic/observable-context"
},
"homepage": "https://github.com/ivbrajkovic/observable-context#readme",
"keywords": [
"observable",
"observable context",
"observable react context"
],
"type": "module",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"scripts": {
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "microbundle",
"dev": "microbundle watch",
"npm:publish": "npm publish --access public"
},
"peerDependencies": {
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"microbundle": "^0.15.1",
"typescript": "^5.2.2"
}
}