-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "nuxt-modules",
"description": "Modules to supercharge Nuxt project",
"type": "module",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm --filter playground dev",
"build": "pnpm -r --parallel build",
"stub": "pnpm -r --parallel stub",
"changelogs": "pnpm -r --parallel changelog && pnpm prettier",
"prettier": "prettier --config .prettierrc --write ./**/*.md",
"lint": "eslint",
"prepare": "husky install",
"postinstall": "pnpm -r --parallel stub && cd packages/playground && pnpm nuxt-prepare"
},
"keywords": [
"Nuxt Modules"
],
"author": "Noah Yu",
"repository": {
"type": "git",
"url": "git+https://github.com/Noah-Ywh/nuxt-modules.git"
},
"homepage": "https://nuxt.paint-js.com",
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@noahyu/conventional-changelog-base": "^1.1.0",
"@noahyu/eslint-config-vue": "^1.4.2",
"@types/node": "22.13.0",
"c8": "^10.1.3",
"commitizen": "^4.3.1",
"conventional-changelog-angular": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"cz-git": "^1.11.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"packageManager": "pnpm@9.15.4"
}