-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.71 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
{
"name": "@applet-request/monorepo",
"private": true,
"version": "0.1.0-beta",
"description": "#### Description uniapp下的request封装",
"main": "index.js",
"scripts": {
"build": "tsx ./scripts/build.ts",
"build:rollup": "rollup -c",
"test": "vitest run",
"ui": "vitest --ui",
"coverage": "vitest run --coverage",
"add:husky-lint-staged": "husky add .husky/pre-commit 'npm run lint-staged'",
"add:husky-commitlint": "husky add .husky/commit-msg 'npm run commitlint'",
"lint-staged": "lint-staged",
"commitlint": "commitlint --config .commitlintrc.cjs --edit $1",
"husky:init": "npx husky-init",
"prepare": "husky install",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && pnpm release:only",
"release:only": "changeset publish --registry=https://registry.npmjs.com/",
"docs:preview": "vitepress preview docs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/callmecalcal/applet-request"
},
"engines": {
"node": ">=16.13.1",
"pnpm": ">=6.32.20"
},
"devDependencies": {
"@algolia/client-search": "^4.9.1",
"@applet-request/adapters": "workspace:*",
"@applet-request/api-mock": "workspace:*",
"@applet-request/core": "workspace:*",
"@applet-request/eslint-config-ts": "workspace:*",
"@applet-request/meta-data": "workspace:*",
"@applet-request/shared": "workspace:*",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@dcloudio/types": "^3.3.2",
"@dcloudio/uni-app": "^3.0.0-alpha-3000020210521001",
"@fastcoder/eslint-config-ts": "^1.0.5",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/node": "^18.15.11",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitest/ui": "^0.29.2",
"assert": "^2.0.0",
"consola": "^2.15.3",
"esbuild": "^0.17.14",
"esbuild-register": "^3.4.2",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"fast-glob": "^3.2.12",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-pure": "^0.0.2",
"search-insights": "^2.11.0",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-rc.31",
"vitest": "^0.29.2"
}
}