-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"name": "@lenne.tech/nuxt-base",
"version": "4.0.3",
"description": "Nuxt base module of @lenne.tech",
"repository": "https://github.com/lenneTech/nuxt-base",
"license": "MIT",
"type": "module",
"author": "lenne.Tech <info@lenne.tech> (https://lenne.tech)",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.mjs",
"types": "./dist/types.d.mts"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"reinit": "npx rimraf package-lock.json && npx nuxt cleanup && npx rimraf node_modules && npm cache clean --force && npm i",
"build": "nuxt-module-build build",
"dev": "nuxi dev playground/nuxt-app",
"dev:generate-types": "npx cross-env GENERATE_TYPES=1 nuxi dev playground/nuxt-app",
"dev:build": "nuxi build playground/nuxt-app",
"dev:prepare": "nuxt-module-build --stub && cd ./playground/nuxt-app && npm i && nuxi prepare",
"release": "standard-version && git push --follow-tags origin main",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin main",
"release:major": "standard-version --release-as major && git push --follow-tags origin main",
"lint": "eslint '**/*.{ts,js,vue}'",
"lint:fix": "eslint '**/*.{ts,js,vue}' --fix"
},
"dependencies": {
"@babel/core": "7.28.3",
"@graphql-codegen/cli": "5.0.7",
"@graphql-codegen/client-preset": "4.8.3",
"@graphql-codegen/typescript": "4.1.6",
"gql-query-builder": "3.8.0",
"graphql": "16.11.0",
"graphql-tag": "2.12.6",
"graphql-tools": "9.0.20",
"graphql-ws": "6.0.6",
"js-sha256": "0.11.1",
"jwt-decode": "4.0.0",
"nuxi": "3.28.0",
"nuxt-graphql-request": "^8.1.1",
"vue": "3.5.21"
},
"devDependencies": {
"@lenne.tech/eslint-config-vue": "2.1.3",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.1.0",
"@nuxt/test-utils": "3.19.2",
"@types/node": "24.3.1",
"eslint": "9.34.0",
"standard-version": "9.5.0",
"typescript": "5.9.2",
"vitest": "3.2.4"
},
"build": {
"externals": [
"ofetch",
"destr",
"ufo"
]
}
}