-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 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
{
"name": "@txnlab/haystack-router-monorepo",
"private": true,
"description": "Monorepo for Haystack Router SDK and examples",
"repository": {
"type": "git",
"url": "git+https://github.com/TxnLab/haystack-js.git"
},
"license": "MIT",
"author": "Doug Richar <doug@txnlab.dev> (https://txnlab.dev)",
"type": "module",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm --filter @txnlab/haystack-router run build",
"test": "pnpm --filter @txnlab/haystack-router run test",
"test:watch": "pnpm --filter @txnlab/haystack-router run test:watch",
"test:coverage": "pnpm --filter @txnlab/haystack-router run test:coverage",
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"typecheck": "pnpm --filter @txnlab/haystack-router run typecheck",
"ci": "pnpm run build && pnpm run lint && pnpm run format && pnpm run typecheck && pnpm run test",
"release": "pnpm run ci && semantic-release"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.1",
"prettier": "3.7.4",
"semantic-release": "25.0.2",
"typescript-eslint": "8.52.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
}
}