-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "@wsvaio/api",
"type": "module",
"version": "2.0.0-0",
"description": "一个使用 TypeScript 编写,基于 fetch 的网络请求库,主要用于处理 HTTP 请求",
"author": "wsvaio <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/wsvaio",
"homepage": "https://github.com/wsvaio/api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wsvaio/api.git"
},
"bugs": {
"url": "https://github.com/wsvaio/api/issues"
},
"keywords": [
"wsvaio",
"fetch",
"request",
"http",
"api"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"main": "index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "vite ./playground",
"commit": "pnpm docs:build && git add docs && czg",
"docs:build": "pnpm typedoc",
"build": "tsup",
"prepublishOnly": "pnpm build",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:lint-staged": "lint-staged",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@wsvaio/utils": "^1.0.22"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^5.0.0",
"@wsvaio/commitlint-config": "^0.0.9",
"@wsvaio/eslint-config": "^1.0.4",
"czg": "^1.8.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"publishConfig": {
"access": "public"
}
}