forked from ulissesferreira/moon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@ulissesferreira/moon",
"version": "0.4.1",
"description": "🌙 A lightweight Vue 3 component library",
"repository": "https://github.com/ulissesferreira/moon.git",
"author": "Ulisses Ferreira <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/moon.umd.js",
"module": "./dist/moon.es.js",
"exports": {
".": {
"import": "./dist/moon.es.js",
"require": "./dist/moon.umd.js"
}
},
"unpkg": "./dist/moon.umd.js",
"jsdelivr": "./dist/moon.umd.js",
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"serve": "vitepress serve docs",
"build:library": "vite build",
"analyze": "vite build --config analyze.config.js",
"publish:library": "npm publish --access public",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"peerDependencies": {
"vue": "^3.1.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.1.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.14.0",
"prettier": "^2.3.2",
"rollup-plugin-visualizer": "^5.5.2",
"vite": "^2.4.3",
"vitepress": "^0.15.6"
},
"dependencies": {
"mitt": "^3.0.0",
"tabbable": "^5.2.0",
"tippy.js": "^6.3.1"
}
}