-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.84 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@mmstudio/mobile",
"version": "1.1.202004170959",
"description": "mobile framework",
"scripts": {
"test": "tsc && ava ./tests/*.js",
"dev": "tsc -w & ava --watch ./tests/*.js",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile": "tsc",
"build": "npm run clean && npm run lint && npm run compile",
"up": "git pull [email protected]:mm-core/base cjs"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/mobile.git"
},
"homepage": "https://mm-works.github.io",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"mm",
"mmstudio",
"蛮蛮",
"蛮蛮工作室",
"插件式",
"原子操作",
"控件",
"框架"
],
"author": {
"name": "taoqf",
"email": "[email protected]"
},
"maintainers": [
{
"name": "taoqf",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"@react-native-community/masked-view": "^0.1.9",
"@react-native-community/netinfo": "^5.7.1",
"@react-navigation/bottom-tabs": "^5.2.6",
"@react-navigation/drawer": "^5.4.1",
"@react-navigation/material-bottom-tabs": "^5.1.8",
"@react-navigation/material-top-tabs": "^5.1.8",
"@react-navigation/native": "^5.1.5",
"@react-navigation/stack": "^5.2.10",
"css-to-react-native-transform": "^1.9.0",
"react-dom": "^16.13.1",
"react-native-gesture-handler": "^1.6.1",
"react-native-paper": "^3.8.0",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.5.0",
"react-native-tab-view": "^2.14.0",
"react-native-vector-icons": "^6.6.0",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "latest",
"@react-native-community/masked-view": "latest",
"@react-native-community/netinfo": "latest",
"@react-navigation/bottom-tabs": "latest",
"@react-navigation/drawer": "latest",
"@react-navigation/material-bottom-tabs": "latest",
"@react-navigation/material-top-tabs": "latest",
"@react-navigation/native": "latest",
"@react-navigation/stack": "latest",
"@types/react": "latest",
"@types/react-native": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"ava": "latest",
"css-to-react-native-transform": "latest",
"del-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"react": "latest",
"react-native": "latest",
"react-dom": "latest",
"react-native-gesture-handler": "latest",
"react-native-paper": "latest",
"react-native-reanimated": "latest",
"react-native-safe-area-context": "latest",
"react-native-screens": "latest",
"react-native-tab-view": "latest",
"react-native-vector-icons": "latest",
"typescript": "next"
}
}