-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "tob-use",
"version": "1.1.1",
"description": "uniapp 的高效 use 库",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"auto:create": "node scripts/create.js",
"auto:remove": "node scripts/remove.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:dev:open": "vuepress dev docs --open",
"build": "vite build --config uni_modules/tob-use/vite.config.js",
"release": "bumpp --commit --push --tag && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/dishait/tob-use.git"
},
"files": [
"dist"
],
"keywords": [
"tob",
"use",
"vue3",
"uniapp",
"reactivity",
"composition-api"
],
"author": {
"name": "markthree",
"email": "1801982702@qq.com",
"url": "https://github.com/markthree"
},
"license": "MIT",
"devDependencies": {
"@markthree/ilazy": "^1.0.2",
"@markthree/node-shared": "^1.3.2",
"@types/node": "^17.0.21",
"@vuepress/plugin-register-components": "^2.0.0-beta.35",
"@vuepress/plugin-search": "^2.0.0-beta.35",
"@vueuse/core": "^7.7.0",
"bumpp": "^7.1.1",
"chokidar": "^3.5.3",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"ityped": "^1.0.3",
"unocss": "^0.28.1",
"unplugin-auto-import": "^0.6.1",
"unplugin-vue-components": "^0.17.21",
"vite": "^2.8.5",
"vite-plugin-inspect": "^0.4.3",
"vuepress": "^2.0.0-beta.35"
},
"dependencies": {
"vue": "^3.2.31"
}
}