-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 973 Bytes
/
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
{
"name": "taro-f2-react",
"version": "1.3.0",
"description": "在 Taro React 中使用 @antv/f2",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"lib",
"es"
],
"scripts": {
"prebuild": "rm -rf lib es",
"build": "tsc && npm run build:cjs",
"build:cjs": "tsc --module CommonJS --outDir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domisolo/taro-f2-react.git"
},
"keywords": [
"taro",
"tarojs",
"react",
"f2",
"mp",
"miniprogram"
],
"author": "Daniel Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/domisolo/taro-f2-react/issues"
},
"homepage": "https://github.com/domisolo/taro-f2-react#readme",
"dependencies": {
"@antv/f2": "^4.0.51"
},
"devDependencies": {
"@tarojs/components": "^3.6.35",
"@tarojs/taro": "^3.6.35",
"@types/react": "^18.3.4",
"typescript": "^5.5.4"
}
}