This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 loc) · 2.79 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@uni-helper/uni-ui-types",
"version": "0.5.15",
"description": "uni-ui 组件类型",
"keywords": [
"uni-app",
"uniapp",
"uni-ui",
"uniui",
"type"
],
"homepage": "https://github.com/uni-helper/uni-ui-types#readme",
"bugs": {
"url": "https://github.com/uni-helper/uni-ui-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/uni-ui-types.git"
},
"license": "MIT",
"author": {
"name": "ModyQyW",
"email": "[email protected]",
"url": "https://modyqyw.top"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts"
},
"require": {
"types": "./dist/index.d.cts"
}
}
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"depupdate": "taze -fw",
"dev": "unbuild --stub",
"format": "prettier . \"!**/package-lock.json*\" \"!**/yarn.lock\" \"!**/pnpm-lock.yaml\" --ignore-unknown --write --cache --log-level=warn",
"lint": "conc \"pnpm:lint:eslint\" \"pnpm:lint:markdownlint\" \"pnpm:lint:publint\"",
"lint:eslint": "eslint ./src --fix --cache",
"lint:markdownlint": "markdownlint . --fix --ignore-path=.gitignore",
"lint:publint": "publint",
"prepare": "is-ci || simple-git-hooks",
"prepublishOnly": "pnpm run build",
"release": "pnpm install && pnpm run build && pnpm run lint && pnpm run typecheck && pnpm run test && bumpp",
"test": "vitest --typecheck --run",
"test:coverage": "vitest --typecheck --run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dcloudio/types": "^3.4.8",
"@uni-helper/uni-app-types": "^0.5.13",
"vue3": "npm:vue@^3.4.27"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@modyqyw/fabric": "^10.9.5",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"bumpp": "^9.4.1",
"concurrently": "^8.2.2",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.40.0",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@uni-helper/uni-app-types": "^0.5.13",
"typescript": "^4.8.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"@uni-helper/uni-app-types": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}