-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
116 lines (116 loc) · 2.97 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
109
110
111
112
113
114
115
116
{
"name": "@uni-helper/uni-use",
"type": "module",
"version": "0.19.14",
"packageManager": "[email protected]",
"description": "uni-app (vue3) 组合式工具集",
"author": {
"name": "ModyQyW",
"email": "[email protected]",
"url": "https://modyqyw.github.io"
},
"license": "MIT",
"homepage": "https://github.com/uni-helper/uni-use#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/uni-use.git"
},
"bugs": {
"url": "https://github.com/uni-helper/uni-use/issues"
},
"keywords": [
"uni-app",
"uniapp",
"uni",
"use",
"composition",
"composable"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "unbuild",
"check:deps": "taze -f",
"check:types": "tsc --noEmit",
"commit": "git-cz",
"dev": "unbuild --stub",
"lint": "pnpm build && conc \"pnpm:check:types\" \"pnpm:lint:eslint\" \"pnpm:lint:publint\"",
"lint:eslint": "eslint . --fix --cache",
"lint:publint": "publint",
"prepare": "is-ci || simple-git-hooks",
"prepublishOnly": "pnpm run build",
"release": "pnpm install && pnpm run lint && bumpp",
"test": "vitest",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview"
},
"peerDependencies": {
"@vueuse/core": "^9.0.0 || ^10.0.0",
"typescript": "^4.5.0 || ^5.0.0",
"vue": "^3.2.47"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@dcloudio/types": "^3.4.7",
"@dcloudio/uni-app": "^3.0.0-3090920231225001"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@commitlint/prompt": "^18.4.4",
"@dcloudio/uni-cli-shared": "^3.0.0-3090920231225001",
"@dcloudio/vite-plugin-uni": "3.0.0-3090920231225001",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vueuse/core": "^9.13.0",
"bumpp": "^9.2.1",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"eslint": "^9.12.0",
"fast-glob": "^3.3.2",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.2.2",
"publint": "^0.2.7",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^4.0.0",
"vitepress": "^1.4.0",
"vitest": "^1.4.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}