-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "oh-my-vueuse",
"version": "1.0.1",
"description": "Some useful hooks in usual development based on Vue3.",
"main": "./lib/index.esm.js",
"type": "module",
"module": "./lib/index.esm.js",
"jsnext:main": "./lib/index.esm.js",
"browser": "./lib/index.umd.js",
"typings": "./lib/types/index.d.ts",
"scripts": {
"dev": "pnpm clean && rollup -c rollup.config.dev.ts -w --configPlugin typescript",
"clean": "rm -rf lib",
"build": "pnpm clean && rollup -c rollup.config.prod.ts --configPlugin typescript",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HduSy/oh-my-vueuse"
},
"bugs": {
"url": "https://github.com/HduSy/oh-my-vueuse/issues"
},
"homepage": "https://github.com/HduSy/oh-my-vueuse",
"author": "HduSy <[email protected]>",
"keywords": [
"vue",
"vue3",
"hooks"
],
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.9.5",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"vue": "^3.4.14"
}
}