-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.27 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.27 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
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
85
{
"name": "@lenne.tech/bug.lt",
"version": "1.6.6",
"description": "A comprehensive Nuxt 4 module for bug reporting with Linear integration, screenshot capture, and detailed system information collection",
"author": "lenne.Tech <info@lenne.tech>",
"homepage": "https://github.com/lenneTech/bug.lt#readme",
"repository": {
"type": "git",
"url": "https://github.com/lenneTech/bug.lt.git"
},
"bugs": {
"url": "https://github.com/lenneTech/bug.lt/issues"
},
"keywords": [
"nuxt",
"nuxt-module",
"bug-reporting",
"linear",
"screenshot",
"error-tracking",
"issue-management"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "4.2.1",
"@nuxt/ui": "4.2.1",
"modern-screenshot": "4.6.7",
"zod": "4.1.13"
},
"devDependencies": {
"@nuxt/devtools": "3.1.0",
"@nuxt/eslint-config": "1.10.0",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.2.1",
"@nuxt/test-utils": "3.20.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.2",
"@types/node": "latest",
"changelogen": "0.6.2",
"conventional-changelog-conventionalcommits": "9.1.0",
"eslint": "9.39.1",
"happy-dom": "20.0.10",
"nuxt": "4.2.1",
"semantic-release": "^25.0.2",
"typescript": "5.9.3",
"vitest": "3.2.4",
"vue-tsc": "3.1.5"
}
}