-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "use-deep-descendants",
"version": "0.1.1",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"serve": "vite preview",
"prepare": "husky install",
"release": "release-it"
},
"main": "dist/use-deep-descendants.umd.js",
"unpkg": "dist/use-deep-descendants.iife.js",
"jsdelivr": "dist/use-deep-descendants.iife.js",
"module": "./dist/use-deep-descendants.es.js",
"exports": {
".": {
"import": "./dist/use-deep-descendants.es.js",
"require": "./dist/use-deep-descendants.umd.js"
}
},
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"dependencies": {
"vue": "^3.2.6"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^16.9.1",
"@vitejs/plugin-vue": "^1.6.1",
"@vue/compiler-sfc": "^3.2.6",
"husky": "^7.0.2",
"release-it": "*",
"typescript": "^4.3.2",
"vite": "^2.5.4",
"vue-tsc": "^0.2.2"
},
"keywords": [
"vue3"
],
"author": "themojilla <the.mojilla@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/themojilla/use-deep-descendants"
},
"repository": "https://github.com/themojilla/use-deep-descendants"
}