generated from Hebilicious/nuxt-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "form-actions-nuxt",
"type": "module",
"version": "0.3.0",
"private": true,
"workspaces": [
"packages/*",
"playgrounds/*",
"test",
"docs"
],
"scripts": {
"build": "rimraf packages/*/dist && cd packages/form-actions-nuxt && bun run build",
"lint": "eslint --cache .",
"lint:fix": "bun run lint --fix",
"docs:dev": "cd docs && nuxt dev",
"docs:build": "cd docs && nuxt build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "bun lint:fix && bumpp -r -x \"bun run changelog\" --all",
"prepare:types": "cd packages/form-actions-nuxt && nuxi prepare",
"publish:ci": "pnpm -r publish --access public --no-git-checks",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@hebilicious/eslint-config": "0.0.3-beta.3",
"@nuxt/test-utils": "^3.8.1",
"@types/node": "^20.9.0",
"bumpp": "^9.2.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "8.53.0",
"eslint-plugin-import": "^2.29.0",
"lint-staged": "^15.1.0",
"pnpm": "8.10.5",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"taze": "^0.12.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"trustedDependencies": [
"@hebilicious/form-actions-nuxt"
],
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}