-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "@inventorjs/axios-sse-adapter",
"version": "1.0.3",
"description": "axios sse adapter",
"repository": "[email protected]:sunkeysun/axios-weapp-adapter.git",
"author": "sunkeysun <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/"
],
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc --watch",
"build": "rimraf lib && tsc"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"axios": "^1.4.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts(x)?": "eslint"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"axios": "^1.4.0"
}
}