-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.42 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
{
"name": "mobx-lark",
"version": "2.0.0-rc.3",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "Unofficial TypeScript SDK for FeiShu/Lark API, which is based on MobX-RESTful.",
"keywords": [
"feishu",
"lark",
"restful",
"api",
"sdk",
"typescript",
"mobx"
],
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"homepage": "https://idea2app.github.io/MobX-Lark/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/MobX-Lark.git"
},
"bugs": {
"url": "https://github.com/idea2app/MobX-Lark/issues"
},
"dependencies": {
"@swc/helpers": "^0.5.13",
"koajax": ">=0.9 <4",
"mobx-restful": ">=0.7.0-rc.0 <2",
"regenerator-runtime": "^0.14.1",
"web-utility": "^4.4.1"
},
"peerDependencies": {
"mobx": ">=6.11"
},
"devDependencies": {
"@parcel/config-default": "~2.12.0",
"@parcel/transformer-typescript-tsc": "~2.12.0",
"@types/node": "^20.16.11",
"dotenv": "^16.4.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mobx": "^6.13.3",
"parcel": "~2.12.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.26.9",
"typedoc-plugin-mdn-links": "^3.3.3",
"typescript": "~5.6.3"
},
"resolutions": {
"native-file-system-adapter": "npm:@tech_query/native-file-system-adapter@^3.0.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"types": false,
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky",
"lint": "lint-staged",
"debug": "ts-node test/index.spec.ts",
"test": "npm run lint && npm run debug",
"pack-code": "rm -rf dist/ && tsc --emitDeclarationOnly && parcel build",
"pack-docs": "rm -rf docs/ && typedoc src/",
"build": "npm run pack-code && npm run pack-docs",
"start": "npm run pack-docs && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
}