-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 961 Bytes
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
{
"name": "sigma-protocol",
"version": "0.1.10",
"description": "A secure signature protocol for Bitcoin transactions.",
"main": "dist/index.cjs",
"repository": {
"url": "git+https://github.com/opldotdev/sigma.git"
},
"author": "Luke Rohenaz",
"license": "MIT",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"type": "module",
"source": "src/index.ts",
"private": false,
"exports": {
".": {
"import": "./dist/index.module.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "bun run build.ts && bun run types",
"types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "bun test",
"clean": "rm -rf dist",
"prepublishOnly": "bun run build"
},
"peerDependencies": {
"@bsv/sdk": "^2.0.1"
},
"devDependencies": {
"@bsv/sdk": "^2.0.1",
"@types/bun": "^1.3.8",
"typescript": "^5.9.3"
}
}