-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mobx-restful",
"version": "2.0.0",
"license": "LGPL-3.0",
"author": "[email protected]",
"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.13",
"idb-keyval": "^6.2.1",
"koajax": "^3.0.3",
"regenerator-runtime": "^0.14.1",
"web-utility": "^4.4.1"
},
"peerDependencies": {
"mobx": ">=6.11"
},
"devDependencies": {
"@octokit/openapi-types": "^22.2.0",
"@parcel/config-default": "~2.12.0",
"@parcel/packager-ts": "~2.12.0",
"@parcel/transformer-typescript-tsc": "~2.12.0",
"@parcel/transformer-typescript-types": "~2.12.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.2",
"dotenv": "^16.4.5",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"mobx": "^6.13.5",
"open-cli": "^8.0.0",
"parcel": "~2.12.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.10",
"typedoc-plugin-mdn-links": "^3.3.5",
"typescript": "~5.6.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"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"
}
}