-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.15 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
{
"name": "mobx-github",
"version": "0.7.0",
"license": "LGPL-3.0-or-later",
"author": "shiy2008@gmail.com",
"description": "MobX SDK for GitHub RESTful API, which is based on MobX-RESTful.",
"keywords": [
"mobx",
"sdk",
"github",
"restful",
"api",
"decorator"
],
"source": "source/index.ts",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"homepage": "https://idea2app.github.io/MobX-GitHub/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/MobX-GitHub.git"
},
"bugs": {
"url": "https://github.com/idea2app/MobX-GitHub/issues"
},
"dependencies": {
"@octokit/openapi-types": "^27.0.0",
"@swc/helpers": "^0.5.23",
"@types/lodash": "^4.17.24",
"koajax": "^3.3.0",
"lodash": "^4.18.1",
"mobx": ">=6.11",
"mobx-restful": "^2.1.4",
"web-utility": "^4.7.2"
},
"devDependencies": {
"@parcel/config-default": "~2.16.4",
"@parcel/packager-ts": "~2.16.4",
"@parcel/transformer-typescript-tsc": "~2.16.4",
"@parcel/transformer-typescript-types": "~2.16.4",
"@types/node": "^24.13.3",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"parcel": "~2.16.4",
"prettier": "^3.9.5",
"tsx": "^4.23.0",
"typedoc": "^0.28.20",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "~5.9.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"printWidth": 100
},
"lint-staged": {
"*.{md,ts,json,yml}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && tsx --test test/*.test.ts",
"build": "rm -rf .parcel-cache/ dist/ docs/ && parcel build && typedoc source/",
"prepublishOnly": "npm test && npm run build"
}
}