-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.85 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": "@hebilicious/authjs-nuxt",
"type": "module",
"version": "0.3.5",
"private": true,
"workspaces": [
"packages/*",
"playgrounds/*",
"test",
"docs"
],
"scripts": {
"build": "rimraf packages/*/dist && cd packages/authjs-nuxt && bun run build",
"prepare:types": "cd packages/authjs-nuxt && nuxi prepare",
"lint": "eslint --cache .",
"lint:fix": "bun run lint --fix",
"docs:dev": "cd docs && vitepress dev",
"docs:build": "cd docs && vitepress build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm lint:fix && bumpp -r -x \"pnpm run changelog\" --all",
"typecheck": "tsc --noEmit",
"test:all": "bun lint && bun typecheck && vitest run",
"test": "vitest",
"test:prepare:packages": "cd packages/authjs-nuxt && nuxi prepare",
"test:prepare:fixtures": "cd test/fixtures/basic && nuxi prepare",
"test:prepare:ci": "bun run test:prepare:packages && bun run test:prepare:fixtures",
"build:ci": "rimraf packages/*/dist && cd packages/authjs-nuxt && bun run build:ci",
"test:ci": "bun run test:prepare:ci && bun run test",
"publish:ci": "pnpm -r publish --access public --no-git-checks"
},
"devDependencies": {
"@hebilicious/eslint-config": "0.0.3-beta.3",
"@nuxt/test-utils": "^3.7.4",
"@types/node": "^20.8.7",
"bumpp": "^9.2.0",
"bun-types": "^1.0.6",
"conventional-changelog-cli": "^4.1.0",
"eslint": "8.51.0",
"eslint-plugin-import": "^2.28.1",
"lint-staged": "^15.0.1",
"pnpm": "8.9.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"taze": "^0.11.4",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}