This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
84 lines (84 loc) · 2.2 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
{
"name": "@geist-ui/vue",
"version": "3.0.0",
"description": "A popular UI framework for Vue",
"scripts": {
"dev": "vue-cli-service serve",
"build": "NODE_ENV=production vue-cli-service build",
"build:lib": "node scripts/build.js",
"clear": "rm -rf dist lib",
"lint": "eslint \"{packages,docs}/**/*.{js,vue}\"",
"prettier": "prettier --write .",
"now-build": "node scripts/now-build.js && yarn run build && cp ./public/favicon.ico ./dist",
"release": "yarn run clear && yarn run build:lib && yarn publish --access public --non-interactive"
},
"prettier": "@geist-ui/prettier-config",
"dependencies": {
"@geist-ui/themes": "^1.0.0",
"@geist-ui/typography": "^1.0.0",
"@popperjs/core": "^2.4.2"
},
"devDependencies": {
"@geist-ui/prettier-config": "^1.0.0",
"@geist-ui/vue-icons": "^1.0.2",
"@types/fs-extra": "^7.0.0",
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-service": "^3.9.2",
"babel-eslint": "^10.0.1",
"eslint": "^7.3.1",
"eslint-config-lambdas": "^0.2.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"prettier": "^2.0.5",
"prismjs": "^1.15.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser": "^3.14.1",
"vue": "^2.6.6",
"vue-auto": "^0.2.5",
"vue-cli-plugin-pug": "^1.0.7",
"vue-markdown-loader": "^2.4.1",
"vue-prism-component": "^1.1.1",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.6.11"
},
"browserslist": {
"production": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"engines": {
"node": ">= 8.1.0",
"npm": ">= 5.0.0"
},
"files": [
"LICENSE",
"dist/",
"lib"
],
"keywords": [
"vue component",
"geist",
"vue ui"
],
"license": "MIT",
"main": "dist/geist-ui.common.js",
"module": "dist/geist-ui.common.js",
"peerDependencies": {
"vue": "^2.5.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geist-org/vue.git"
},
"style": "dist/geist-ui.css",
"unpkg": "dist/geist-ui.umd.js"
}