-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "micro-ordinals",
"version": "0.1.1",
"description": "Manage ordinals, inscriptions and runes using scure-btc-signer",
"files": [
"lib",
"src"
],
"bin": {
"ord": "lib/esm/cli.js"
},
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@scure/base": "~1.1.5",
"@scure/btc-signer": "~1.3.2",
"enquirer": "2.4.1",
"micro-packed": "~0.6.2"
},
"devDependencies": {
"@noble/curves": "^1.4.0",
"@paulmillr/jsbt": "0.1.0",
"@types/node": "20.12.7",
"micro-bmark": "0.3.1",
"micro-should": "0.4.0",
"prettier": "3.3.2",
"typescript": "5.5.2"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"build:release": "cd build; npm run build:release",
"lint": "prettier --print-width 100 --single-quote --check src",
"format": "prettier --print-width 100 --single-quote --write src",
"test": "node test/index.test.js"
},
"sideEffects": false,
"keywords": [
"ordinal",
"inscription",
"rune",
"bitcoin",
"ordinals",
"inscriptions",
"btc"
],
"author": "Paul Miller (https://paulmillr.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-ordinals.git"
},
"license": "MIT"
}