-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
77 lines (77 loc) · 2.15 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
{
"name": "vue-tg",
"version": "0.8.0",
"description": "Telegram integration for Vue",
"author": "deptyped <deptyped@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/deptyped/vue-telegram#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/deptyped/vue-telegram.git"
},
"bugs": "https://github.com/deptyped/vue-telegram/issues",
"keywords": [
"vue3",
"composable",
"telegram",
"vite"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:demo": "vite build --config demo/vite.config.ts",
"deploy:demo": "npm run build:demo",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "npm run build && npm pack",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"docs:dev": "npm run build && npm run generate:webapps-snippets && vitepress dev docs",
"docs:build": "npm run build && npm run generate:webapps-snippets && vitepress build docs",
"docs:preview": "npm run build && npm run generate:webapps-snippets && vitepress preview docs",
"generate:webapps-snippets": "tsx ./scripts/generate-webapps-docs-snippets.ts"
},
"peerDependencies": {
"vue": "^3"
},
"dependencies": {
"@types/telegram-web-app": "^7"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@shikijs/vitepress-twoslash": "^1.24.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@vitejs/plugin-vue": "5.2.1",
"@vue/test-utils": "2.4.6",
"eslint": "^9.16.0",
"happy-dom": "15.11.7",
"jsdom": "^25.0.1",
"rimraf": "6.0.1",
"tsx": "^4.19.2",
"typescript": "5.7.2",
"vite": "6.0.3",
"vite-plugin-dts": "4.3.0",
"vitepress": "1.5.0",
"vitest": "2.1.8"
}
}