-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "@lehoczky/vue-termynal",
"description": "Vue.js implementation of the termynal library.",
"version": "1.3.0",
"private": false,
"license": "MIT",
"scripts": {
"build": "vite build",
"lint": "npm run eslint:check && npm run styles:check && npm run format:check",
"eslint:check": "eslint . --ext .js,.ts,.vue,.yml,.yaml --max-warnings 0",
"styles:check": "stylelint \"src/**/*.css\"",
"format:check": "prettier src/** --check",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"files": [
"dist",
"README.md"
],
"main": "./dist/vue-termynal.js",
"module": "./dist/vue-termynal.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-termynal.mjs",
"require": "./dist/vue-termynal.js"
}
},
"dependencies": {
"style-inject": "^0.3.0"
},
"devDependencies": {
"@lehoczky/eslint-config-vue": "^0.0.17",
"@vitejs/plugin-vue": "^4.2.3",
"eslint": "^8.42.0",
"eslint-define-config": "^1.20.0",
"prettier": "^2.8.8",
"stylelint": "^15.6.3",
"stylelint-config-standard": "^33.0.0",
"typescript": "~5.0.4",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitepress": "1.0.0-beta.1",
"vue": "^3.2.45"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"author": {
"name": "Zoltan Lehoczky",
"email": "[email protected]",
"url": "https://github.com/Lehoczky"
},
"homepage": "https://lehoczky.github.io/vue-termynal",
"keywords": [
"vue",
"vue3",
"terminal",
"termynal",
"vuepress",
"documentation"
],
"repository": {
"url": "https://github.com/Lehoczky/vue-termynal.git",
"type": "git"
},
"packageManager": "[email protected]"
}