-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.65 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.65 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@uni-helper/uni-promises",
"version": "0.2.1",
"description": "uni-app Promise 化的 API",
"keywords": [
"uni-app",
"uniapp",
"uni",
"promisify",
"promise",
"promisified",
"api"
],
"homepage": "https://github.com/uni-helper/uni-promises#readme",
"bugs": {
"url": "https://github.com/uni-helper/uni-promises/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/uni-promises.git"
},
"license": "MIT",
"author": {
"name": "ModyQyW",
"email": "wurui-dev@foxmail.com",
"url": "https://modyqyw.github.io"
},
"type": "module",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"check:deps": "taze -f",
"check:types": "tsc --noEmit",
"commit": "git-cz",
"dev": "unbuild --stub",
"lint": "conc \"pnpm:lint:eslint\" \"pnpm:lint:markdownlint\" \"pnpm:lint:publint\"",
"lint:eslint": "eslint ./src --fix --cache --ignore-path=.gitignore",
"lint:markdownlint": "markdownlint . --fix --ignore-path=.gitignore",
"lint:publint": "publint",
"prepublishOnly": "pnpm run build",
"release": "pnpm install && pnpm run lint && bumpp",
"prepare": "is-ci || simple-git-hooks"
},
"dependencies": {
"@dcloudio/types": "^3.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@commitlint/prompt": "^17.8.0",
"@modyqyw/fabric": "^9.0.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^24.10.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"bumpp": "^9.2.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.1",
"eslint": "^8.51.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.1",
"markdownlint-cli": "^0.37.0",
"prettier": "^3.0.3",
"publint": "^0.2.4",
"simple-git-hooks": "^2.9.0",
"taze": "^0.11.4",
"ts-node": "^10.9.1",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vue": "^3.3.4"
},
"peerDependencies": {
"typescript": "^4.8.0 || ^5.0.0",
"vue": "^3.2.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "pnpm@8.9.2",
"engines": {
"node": ">=14.18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}