-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.61 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
{
"name": "create-nuxt-base",
"version": "2.15.1",
"private": true,
"description": "Starter to generate a configured environment with VueJS, Nuxt, Tailwind, Linting, Unit Tests, Playwright etc.",
"license": "MIT",
"author": "lenne.Tech GmbH",
"repository": {
"url": "https://github.com/lenneTech/nuxt-base-starter"
},
"bin": {
"create-nuxt-base": "./index.js"
},
"main": "index.js",
"scripts": {
"c": "pnpm run check",
"check": "pnpm install --frozen-lockfile && pnpm audit && pnpm run format:check && cd nuxt-base-template && pnpm run check",
"check:fix": "pnpm install && pnpm audit --fix && pnpm run format && cd nuxt-base-template && pnpm run check:fix",
"check:naf": "pnpm install && pnpm run format && cd nuxt-base-template && pnpm run check:naf",
"cf": "pnpm run check:fix",
"cnaf": "pnpm run check:naf",
"format": "oxfmt --disable-nested-config",
"format:check": "oxfmt --check --disable-nested-config",
"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"
},
"dependencies": {
"cross-spawn": "7.0.6",
"fs-extra": "11.3.6"
},
"devDependencies": {
"oxfmt": "0.59.0",
"standard-version": "9.5.0"
},
"engines": {
"node": ">= 22",
"pnpm": "^11.0.0"
},
"packageManager": "pnpm@11.14.0+sha512.66c1ac4c7d4762d6d7dde44c7f3e5a73591ed0a0806e751d4ed32d4f004f25b2285a906b1fd8a9e3e621df3b4e2858bf88e50e0cf626bedbe977fe434a5caf85"
}