-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.5 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": "@koralabs/handles-marketplace-contracts",
"version": "0.2.3",
"description": "Write validators in the `validators` folder, and supporting functions in the `lib` folder using `.ak` as a file extension.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "concurrently \"aiken fmt --check\" \"npx eslint '**/{src,test}/**/*.{ts,mjs}' --max-warnings=0\"",
"test:aiken": "concurrently \"aiken fmt --check\" \"aiken check\"",
"test": "vitest run"
},
"bin": {
"marketplace": "bin/marketplace"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@helios-lang/codec-utils": "^0.3.4",
"@helios-lang/compiler": "^0.17.10",
"@helios-lang/crypto": "^0.2.3",
"@helios-lang/ledger": "^0.6.14",
"@helios-lang/tx-utils": "^0.3.16",
"@helios-lang/uplc": "^0.7.9",
"@koralabs/kora-labs-common": "^5.1.20",
"commander": "^12.1.0",
"cross-fetch": "^4.1.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.7",
"enquirer": "^2.4.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"flatted": "^3.3.2",
"ts-res": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"concurrently": "^9.1.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}