-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@nextorders/queue-monorepo",
"version": "0.4.2",
"private": true,
"packageManager": "pnpm@10.30.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nextorders/queue.git"
},
"engines": {
"node": ">=24.13.1",
"pnpm": ">=10.30.1"
},
"scripts": {
"build": "pnpm -r run build",
"build:types": "tsc --emitDeclarationOnly",
"release": "bumpp --execute=\"pnpm run release:prepare\" --recursive",
"release:prepare": "pnpm run build:types",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "pnpm -r run clean",
"clean:modules": "pnpm -r run clean:modules && rm -rf node_modules",
"typecheck": "pnpm -r run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check:full": "pnpm run lint:fix && pnpm run typecheck && pnpm vitest run",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:dev",
"@commitlint/cli": "catalog:dev",
"@commitlint/config-conventional": "catalog:dev",
"@vitest/browser-playwright": "catalog:test",
"@vitest/coverage-v8": "catalog:test",
"bumpp": "catalog:dev",
"eslint": "catalog:dev",
"husky": "catalog:dev",
"lint-staged": "catalog:dev",
"playwright": "catalog:test",
"typescript": "catalog:dev",
"vitest": "catalog:test"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json}": [
"eslint --cache --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}