-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 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
53
{
"name": "@helios-lang/minswap",
"version": "0.3.1",
"description": "WASM-free library for querying Minswap prices",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite",
"test:pretty": "prettier . --check",
"test:suite": "node --test",
"test:types": "pnpm run build:types"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeliosLang/minswap.git"
},
"keywords": [
"Cardano",
"Minswap",
"DEX",
"price",
"feed",
"CNTs"
],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/HeliosLang/minswap/issues"
},
"homepage": "https://github.com/HeliosLang/minswap#readme",
"dependencies": {
"@helios-lang/codec-utils": "^0.3.4",
"@helios-lang/ledger": "^0.7.23",
"@helios-lang/tx-utils": "^0.6.35",
"@helios-lang/type-utils": "^0.3.0",
"@helios-lang/uplc": "^0.7.20"
},
"devDependencies": {
"@types/node": "^24.0.14",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}