-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "micro-ordinals",
"version": "0.2.0",
"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.2.1",
"@scure/btc-signer": "~1.6.0",
"enquirer": "2.4.1",
"micro-packed": "~0.7.1"
},
"devDependencies": {
"@noble/curves": "~1.8.0",
"@paulmillr/jsbt": "0.3.1",
"@types/node": "20.12.7",
"micro-bmark": "0.4.0",
"micro-should": "0.5.0",
"prettier": "3.3.2",
"typescript": "5.5.2"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"build:release": "npx jsbt esbuild test/build",
"lint": "prettier --check src",
"format": "prettier --write src",
"test": "node test/index.js",
"test:bun": "bun test/index.js",
"test:deno": "deno --allow-env --allow-read test/index.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"
}