generated from Hebilicious/nuxt-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "@hebilicious/vue-query-nuxt",
"type": "module",
"version": "0.3.0",
"private": true,
"workspaces": [
"packages/*",
"playgrounds/*",
"test",
"docs"
],
"scripts": {
"build": "rimraf packages/*/dist && cd packages/vue-query-nuxt && bun run build",
"lint": "eslint --cache .",
"lint:fix": "bun lint --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm lint:fix && bumpp -r -x \"pnpm run changelog\" --all",
"typecheck": "tsc --noEmit",
"test": "vitest",
"prepare:types": "cd packages/vue-query-nuxt && nuxi prepare",
"publish:ci": "pnpm -r publish --access public --no-git-checks"
},
"devDependencies": {
"@hebilicious/eslint-config": "0.0.3-beta.3",
"@nuxt/test-utils": "^3.12.1",
"@types/node": "20.12.7",
"bumpp": "^9.4.0",
"bun-types": "^1.1.4",
"conventional-changelog-cli": "^4.1.0",
"eslint": "8.57.0",
"eslint-plugin-import": "^2.29.1",
"lint-staged": "^15.2.2",
"pnpm": "8.15.7",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.6",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}