-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "intmax2-function",
"version": "1.0.20",
"license": "MIT",
"description": "A collection of function for INTMAX2 blockchain",
"repository": {
"type": "git",
"url": "https://github.com/InternetMaximalism/intmax2-function.git"
},
"bugs": {
"url": "https://github.com/InternetMaximalism/intmax2-function/issues"
},
"homepage": "https://github.com/InternetMaximalism/intmax2-funciton#readme",
"keywords": [
"intmax2",
"blockchain",
"function",
"api",
"token"
],
"engines": {
"node": ">=22.0.0",
"yarn": ">=4.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --all --topological run build",
"build:shared": "yarn workspace @intmax2-function/shared run build",
"build:parallel": "yarn workspaces foreach --all -pt run build",
"lint": "biome lint .",
"format": "biome check --write --unsafe .",
"check": "biome check .",
"token-map-bootstrap": "npx tsx --env-file=./.env packages/token-map-register/scripts/bootstrap.ts",
"token-image-bootstrap": "npx tsx --env-file=./.env packages/token-metadata-sync/scripts/bootstrap.ts",
"replay-messenger": "npx tsx --env-file=./.env packages/deposit-analyzer/scripts/replay-messenger.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "2.3.9",
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.11.0",
"yarn": "4.12.0"
}
}