forked from icellan/bap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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": "bsv-bap",
"version": "0.1.7",
"description": "BAP npm module",
"repository": {
"type": "git",
"url": "https://github.com/BitcoinSchema/bap.git"
},
"license": "Open BSV",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": "./dist/index.modern.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/*.js",
"dist/*.js.map",
"dist/*.d.ts",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "bun run clean && bun run build.ts",
"clean": "rimraf ./dist",
"test": "bun test",
"check": "biome check .",
"format": "biome format . --write",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"prepublishOnly": "bun run clean && bun run build"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.2.4",
"@types/node": "^22.13.9",
"rimraf": "^6.0.1",
"typescript": "^5.8.2"
},
"dependencies": {
"schema-dts": "^1.1.5"
},
"peerDependencies": {
"@bsv/sdk": "^1.3.34"
}
}