-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.82 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.82 KB
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": "mobx-lark",
"version": "2.8.1",
"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.21",
"@types/react": "^19.2.14",
"koajax": "^3.3.0",
"lodash.memoize": "^4.1.2",
"mobx": "^6.15.0",
"mobx-restful": "^2.1.4",
"regenerator-runtime": "^0.14.1",
"web-utility": "^4.6.5"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@parcel/config-default": "~2.16.4",
"@parcel/transformer-typescript-tsc": "~2.16.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash.memoize": "^4.1.9",
"@types/node": "^24.12.2",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"dotenv": "^17.4.0",
"fs-extra": "^11.3.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"parcel": "~2.16.4",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-node": "^10.9.2",
"turndown": "^7.2.4",
"typedoc": "^0.28.18",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "~5.8.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"lmdb",
"msgpackr-extract"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"printWidth": 100
},
"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"
}
}