-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
54
55
56
57
58
59
60
{
"name": "micro-ordinals",
"version": "0.4.0",
"description": "Manage ordinals, inscriptions and runes using scure-btc-signer",
"files": [
"*.js",
"*.js.map",
"*.d.ts",
"*.d.ts.map",
"src"
],
"bin": {
"ord": "cli.js"
},
"dependencies": {
"@scure/base": "^2.2.0",
"@scure/btc-signer": "^2.2.0",
"@types/node": "25.3.0",
"enquirer": "2.4.1",
"micro-packed": "^0.9.0"
},
"devDependencies": {
"@noble/curves": "^2.2.0",
"@paulmillr/jsbt": "0.5.0",
"prettier": "3.5.3",
"typescript": "6.0.2"
},
"scripts": {
"build": "tsc",
"build:release": "npx jsbt esbuild test/build",
"check": "npx --no @paulmillr/jsbt check package.json",
"check:readme": "npx --no @paulmillr/jsbt readme package.json",
"check:treeshake": "npx --no @paulmillr/jsbt treeshake package.json test/build/out-treeshake",
"check:jsdoc": "npx --no @paulmillr/jsbt tsdoc package.json",
"format": "prettier --write src",
"test": "node test/index.ts",
"test:bun": "bun test/index.ts",
"test:deno": "deno --allow-env --allow-read test/index.ts"
},
"keywords": [
"ordinal",
"inscription",
"rune",
"bitcoin",
"ordinals",
"inscriptions",
"btc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-ordinals.git"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT"
}