-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "@yuntijs/bff-sdk-name",
"version": "1.0.0",
"description": "template for bff sdk",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"dev": "father dev",
"build": "father build",
"build:deps": "father prebundle",
"init:packagejson": "zx ./initiation.mjs",
"gen:gql": "zx ./codegen-gql.mjs",
"prepublishOnly": "father doctor && npm run build",
"pub": "npm publish --access public"
},
"keywords": [],
"authors": [],
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.1.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@tarojs/taro": "^3",
"@types/node": "^20.10.1",
"@types/react": "^18.2.35",
"antd": "^5.11.0",
"father": "^4.3.8",
"headers-polyfill": "^4.0.3",
"graphql-codegen-plugin-typescript-swr": "^0.8.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"semver": "^7.5.4",
"swr": "^2.2.4"
},
"dependencies": {
"graphql": "^16.8.1",
"graphql-request": "^5.2.0",
"graphql-tag": "^2.12.6",
"query-string": "^8.1.0"
},
"peerDependencies": {
"@tarojs/taro": ">=3",
"antd": ">=5.4.0",
"headers-polyfill": ">=4",
"react": ">=16.9.0",
"swr": ">=2.0.0"
},
"yunti": {
"umd": {
"library": "BffSDKLibrary",
"entry": [
"/dist/umd/index.min.js"
]
}
},
"author": ""
}