-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 KB
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
{
"name": "nuxt-telegram-auth",
"version": "1.2.6",
"description": "🔐 Telegram login widget integration for Nuxt 3",
"repository": "https://github.com/halitsever/nuxt-telegram-auth.git",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground --host",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run prettier && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@nuxt/kit": "^3.17.4"
},
"devDependencies": {
"@nuxt/devtools": "^2.4.1",
"@nuxt/eslint-config": "^1.4.1",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.17.4",
"@nuxt/test-utils": "^3.19.1",
"@types/node": "^22.15.21",
"changelogen": "^0.6.1",
"eslint": "^9.27.0",
"nuxt": "^3.17.4",
"prettier": "^3.5.3",
"typescript": "latest",
"vitepress": "^1.6.3",
"vitest": "^3.1.4",
"vue-tsc": "^2.2.10"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.41.1"
}
}