-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"author": "Sitt Guruvanich <[email protected]>",
"dependencies": {
"@ln-markets/api": "^2.0.0",
"bech32": "^2.0.0",
"secp256k1": "^4.0.3"
},
"description": "Isolated-margin account for decentralized Bitcoin trading via the Lightning network",
"devDependencies": {
"@types/node": "^20.8.9",
"@types/secp256k1": "^4.0.3",
"dotenv": "^16.3.1",
"prettier": "^3.0.3",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-node-polyfills": "^0.15.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"exports": {
".": {
"import": "./dist/othello.js",
"require": "./dist/othello.cjs"
}
},
"files": [
"dist/**"
],
"keywords": [
"bitcoin",
"btc",
"btcEquivalent",
"krutt",
"kruttfi",
"lightning",
"lnm",
"lnmarkets",
"paowow",
"satoshi",
"satoshis",
"sats",
"synthetics",
"usd",
"usdEquivalent",
"wow"
],
"license": "MIT",
"main": "./dist/othello.umd.cjs",
"module": "./dist/othello.js",
"name": "@krutt/othello",
"scripts": {
"build": "vite build && tsc --project tsconfig.build.json && tsc-alias",
"build:dev": "NODE_ENV=development vite build && tsc --project tsconfig.build.json && tsc-alias",
"fmt": "prettier --write .",
"test": "vitest"
},
"type": "module",
"types": "./dist/othello.d.ts",
"version": "0.1.0",
"directories": {
"example": "example",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krutt/othello.git"
},
"bugs": {
"url": "https://github.com/krutt/othello/issues"
},
"homepage": "https://github.com/krutt/othello#readme"
}