-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.81 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
{
"name": "core-registry-api",
"version": "1.0.39",
"description": "Combined Carbon Core Registry API Application",
"main": "index.js",
"type": "commonjs",
"bin": "index.js",
"chiaTestedVersion": "2.4.4",
"chiaMinVersion": "2.4.4",
"devDependencies": {
"@yao-pkg/pkg": "^5.16.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"tar": "^6.2.1",
"wait-on": "^7.2.0",
"yauzl": "^2.10.0"
},
"pkg": {
"assets": [
"package.json",
"index.js"
],
"outputPath": "dist"
},
"engines": {
"node": ">=20.16"
},
"scripts": {
"start": "node index.js",
"build": "pkg .",
"test": "concurrently \"npm run start\" \"wait-on $CADT_HOST && wait-on $EXPLORER_HOST && wait-on $TOKENIZATION_ENGINE_HOST && jest\"",
"test-dev": "concurrently \"npm run start\" \"wait-on localhost:31310 && wait-on localhost:31313 && wait-on localhost:31311 && cross-env CADT_HOST=localhost && cross-env EXPLORER_HOST=localhost && cross-env TOKENIZATION_ENGINE_HOST=localhost && jest\"",
"prepare-binary": "rm -rf dist && mkdir dist",
"create-win-x64-dist": "npm run prepare-binary && pkg package.json -t node20-win-x64 --out-path dist",
"create-mac-x64-dist": "npm run prepare-binary && pkg package.json -t node20-macos-x64 --out-path dist",
"create-mac-arm64-dist": "npm run prepare-binary && pkg package.json -t node20-macos-arm64 --out-path dist",
"create-linux-x64-dist": "npm run prepare-binary && pkg package.json -t node20-linux-x64 --out-path dist",
"create-linux-arm64-dist": "npm run prepare-binary && pkg package.json -t node20-linux-arm64 --out-path dist"
},
"keywords": [
"chia-blockchain"
],
"author": "Michael Taylor",
"license": "Apache-2.0",
"dependencies": {
"superagent": "^9.0.2"
}
}