-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.86 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@unserved/monorepo",
"type": "module",
"version": "0.0.16",
"license": "MIT",
"private": true,
"author": "Stanley Horwood <[email protected]>",
"homepage": "https://github.com/shorwood/unserved#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shorwood/unserved.git"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"eslint",
"typescript",
"meow"
]
}
},
"scripts": {
"dev": "uncli build --watch true",
"build": "uncli build server client nuxt",
"lint": "DEBUG=eslint:eslint eslint --cache",
"lint:ci": "eslint --cache ./packages/server ./packages/client ./packages/nuxt",
"lint:fix": "DEBUG=eslint:eslint eslint --fix --cache",
"test": "vitest --watch",
"test:ci": "vitest --run server client nuxt",
"test:ui": "vitest --ui",
"test:types": "vitest --typecheck",
"test:coverage": "vitest --coverage",
"commit": "uncli commit",
"commit:lint": "commitlint --edit",
"publish:ci": "uncli publish",
"release": "uncli release",
"preinstall": "node ./forcePnpm.js",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/config-pnpm-scopes": "19.1.0",
"@types/node": "22.5.4",
"@unshared/eslint-config": "0.0.19",
"@unshared/scripts": "0.0.19",
"@vitest/coverage-v8": "2.0.5",
"@vitest/ui": "2.0.5",
"@vitest/utils": "2.0.5",
"commitlint": "19.4.1",
"eslint": "9.10.0",
"happy-dom": "15.7.3",
"husky": "9.1.5",
"memfs": "4.11.1",
"sqlite3": "5.1.7",
"tsx": "4.19.0",
"typescript": "5.6.2",
"vitest": "2.0.5"
},
"commitlint": {
"extends": [
"@commitlint/config-pnpm-scopes"
],
"rules": {
"body-max-length": [
2,
"always",
"Infinity"
]
}
}
}