-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 977 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 977 Bytes
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
{
"name": "@eclesia/eclesia-indexer-core",
"version": "1.4.0",
"description": "",
"scripts": {
"build": "pnpm recursive run --sort build",
"lint": "pnpm recursive run --sort lint",
"lint:fix": "pnpm recursive run --sort lint:fix",
"typecheck": "pnpm recursive run --sort typecheck",
"test": "pnpm recursive run --sort test",
"test:e2e": "vitest run --config tests/vitest.config.ts",
"bench": "pnpm recursive run --sort --stream bench",
"typedoc": "typedoc",
"audit": "pnpm audit",
"audit:fix": "pnpm audit --fix",
"outdated": "pnpm outdated",
"prepare": "husky"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"pnpm lint:fix"
]
},
"keywords": [],
"author": "",
"private": true,
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^24.10.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"typedoc": "^0.28.14",
"vitest": "^4.0.7"
}
}