-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "js-1sat-ord",
"version": "0.1.80",
"description": "1Sat Ordinals library",
"types": "dist/index.d.ts",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"source": "src/index.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.js"
}
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/BitcoinSchema/js-1sat-ord.git"
},
"scripts": {
"build": "bun run clean && microbundle --globals @bsv/sdk=bsv",
"clean": "rimraf -rf dist",
"test": "bun test",
"prepublishOnly": "bun run build",
"fmt": "echo $(which biome) && biome format --write ."
},
"keywords": [],
"author": "Luke Rohenaz",
"license": "MIT",
"dependencies": {
"image-meta": "^0.2.1",
"satoshi-token": "^0.0.4",
"sigma-protocol": "^0.1.6"
},
"peerDependencies": {
"@bsv/sdk": "^1.1.23"
},
"devDependencies": {
"@types/bun": "^1.1.16",
"microbundle": "^0.15.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
}
}