-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.72 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
{
"name": "televue",
"author": {
"name": "Gleb Sakharov",
"url": "https://skhr.vg"
},
"license": "MIT",
"description": "Vue 3 components for Telegram widgets",
"repository": {
"type": "git",
"url": "https://github.com/skhrvg/televue.git"
},
"bugs": {
"url": "https://github.com/skhrvg/televue/issues"
},
"homepage": "https://televue.skhr.vg",
"keywords": [
"vue",
"vue 3",
"components",
"telegram",
"telegram widget",
"component",
"telegram passport",
"oauth",
"vite",
"typescript",
"library"
],
"version": "1.0.0-alpha.1",
"scripts": {
"lib:watch": "vue-tsc --emitDeclarationOnly && vite build --watch",
"lib:build": "vue-tsc --emitDeclarationOnly && vite build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"files": [
"dist",
"types"
],
"main": "./dist/televue.umd.js",
"module": "./dist/televue.es.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/televue.es.js",
"require": "./dist/televue.umd.js"
}
},
"peerDependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.1",
"@types/node": "^18.7.13",
"@vitejs/plugin-vue": "^3.0.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.4.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.9.0",
"vitepress": "^1.0.0-alpha.10",
"vue-tsc": "^0.40.1"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}