This repository was archived by the owner on Mar 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hyperbridge-sdk",
"private": true,
"version": "0.1.0",
"description": "Hyperbridge SDK workspace",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm --filter=\"@hyperbridge/sdk\" build && pnpm --filter=\"@hyperbridge/indexer\" build && pnpm --filter=\"@hyperbridge/simplex\" build",
"test": "pnpm --filter=\"*\" test",
"lint": "pnpm --filter=\"*\" lint",
"format": "pnpm --filter=\"*\" format",
"clean": "rm -rf node_modules packages/*/node_modules packages/*/dist",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.5.2",
"typescript": "5.7.3"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": false,
"objectWrap": "preserve",
"bracketSpacing": true,
"semi": false,
"experimentalOperatorPosition": "end",
"experimentalTernaries": false,
"singleQuote": false,
"jsxSingleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "all",
"singleAttributePerLine": false,
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"proseWrap": "preserve",
"insertPragma": false,
"printWidth": 120,
"requirePragma": false,
"tabWidth": 4,
"useTabs": true,
"embeddedLanguageFormatting": "auto"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3", "bufferutil", "utf-8-validate", "esbuild"]
},
"engines": {
"node": ">=22",
"pnpm": ">=7"
},
"packageManager": "pnpm@10.30.3",
"dependencies": {
"jest": "^29.7.0",
"ts-node": "^10.9.2"
}
}