-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
53
54
55
56
57
58
59
60
{
"name": "mobz",
"version": "0.21.0",
"description": "zustand style mobx api",
"main": "./dist/mobz.cjs.js",
"module": "./dist/mobz.es.js",
"browser": "./dist/mobz.umd.min.js",
"umd::main": "./dist/mobz.umd.js",
"types": "./type/mobz.d.ts",
"typings": "./type/mobz.d.ts",
"files": [
"src/*.ts",
"type/**/*.d.ts",
"dist/**/*.js"
],
"scripts": {
"build": "rollup -c && tsc -p tsconfig.d.json",
"build:w": "rollup -cw",
"build:type": "tsc -p tsconfig.d.json",
"lint": "eslint . --ext .ts,.tsx",
"publish": "npm publish --registry http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2A5F/mobz.git"
},
"keywords": [
"mobx",
"mobz",
"zustand",
"react"
],
"author": "2A5F",
"license": "MIT",
"bugs": {
"url": "https://github.com/2A5F/mobz/issues"
},
"homepage": "https://github.com/2A5F/mobz#readme",
"devDependencies": {
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"acorn-jsx": "^5.3.2",
"eslint": "^8.23.1",
"mobx": "^6.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"requirejs": "^2.3.6",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"peerDependencies": {
"mobx": "^6.6.2",
"react": "^18.2.0"
}
}