-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.97 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.97 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
99
100
101
102
103
104
{
"name": "mobx-restful",
"version": "2.1.4",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "Common MobX abstract base Class & Decorator utilities for RESTful API",
"keywords": [
"restful",
"api",
"mobx",
"sdk",
"model",
"store",
"state",
"typescript"
],
"homepage": "https://idea2app.github.io/MobX-RESTful/",
"repository": {
"type": "git",
"url": "git+https://github.com/idea2app/MobX-RESTful.git"
},
"bugs": {
"url": "https://github.com/idea2app/MobX-RESTful/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"dependencies": {
"@swc/helpers": "^0.5.17",
"idb-keyval": "^6.2.2",
"koajax": "^3.1.2",
"regenerator-runtime": "^0.14.1",
"web-utility": "^4.6.2"
},
"peerDependencies": {
"mobx": ">=6.11"
},
"devDependencies": {
"@octokit/openapi-types": "^26.0.0",
"@parcel/config-default": "~2.16.0",
"@parcel/packager-ts": "~2.16.0",
"@parcel/transformer-typescript-tsc": "~2.16.0",
"@parcel/transformer-typescript-types": "~2.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.18.11",
"core-js": "^3.46.0",
"dotenv": "^17.2.3",
"fake-indexeddb": "^6.2.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.2.5",
"mobx": "^6.15.0",
"open-cli": "^8.0.0",
"parcel": "~2.16.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typedoc-plugin-mdn-links": "^5.0.10",
"typescript": "~5.9.3",
"web-streams-polyfill": "^4.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"core-js",
"lmdb",
"msgpackr-extract"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4,
"printWidth": 100
},
"lint-staged": {
"*.{md,ts,json,yml}": "prettier --write"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transformIgnorePatterns": [],
"testTimeout": 10000
},
"browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
"targets": {
"types": false,
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && jest",
"pack-dist": "tsc --emitDeclarationOnly && parcel build",
"build": "rm -rf .parcel-cache/ dist/ docs/ && typedoc source/ && npm run pack-dist",
"start": "typedoc source/ && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
}