-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.48 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.48 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
{
"name": "@monorepo/uni-network",
"version": "0.0.0",
"private": true,
"description": "Monorepo",
"keywords": [
"uni-app",
"uniapp",
"uni",
"request",
"network",
"upload",
"uploadFile",
"download",
"downloadFile"
],
"homepage": "https://github.com/uni-helper/uni-network#readme",
"bugs": {
"url": "https://github.com/uni-helper/uni-network/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/uni-network.git"
},
"funding": "https://github.com/sponsors/modyqyw",
"license": "MIT",
"author": {
"name": "ModyQyW",
"email": "wurui-dev@foxmail.com",
"url": "https://modyqyw.top"
},
"sideEffects": false,
"type": "module",
"scripts": {
"build": "rimraf packages/*/dist --glob && pnpm -r --filter=./packages/* run build && pnpm -r run build-post",
"check": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"dep-update": "taze -fw",
"dev": "pnpm -r --filter=./packages/* --parallel run dev",
"docs:build": "pnpm -C docs run build",
"docs:dev": "pnpm -C docs run dev",
"docs:preview": "pnpm -C docs run preview",
"play:build:h5": "pnpm build && pnpm -C playground run build:h5",
"play:build:mp-weixin": "pnpm build && pnpm -C playground run build:mp-weixin",
"play:dev:h5": "pnpm dev && pnpm -C playground run dev:h5",
"play:dev:mp-weixin": "pnpm dev && pnpm -C playground run dev:mp-weixin",
"prepare": "is-ci || lefthook install",
"prepublishOnly": "pnpm run build",
"release": "lerna version",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"preversion": "pnpm run check"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@commitlint/config-pnpm-scopes": "catalog:",
"@dcloudio/types": "catalog:",
"@lerna-lite/cli": "catalog:",
"@lerna-lite/version": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"conventional-changelog-conventionalcommits": "catalog:",
"is-ci": "catalog:",
"lefthook": "catalog:",
"rimraf": "catalog:",
"taze": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}