forked from shruggr/ts-casemod-spv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "spv-store",
"author": "David Case",
"license": "MIT",
"version": "0.1.67",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && microbundle --globals @bsv/sdk=bsv && npm pack",
"clean": "rimraf -rf dist",
"format": "tsfmt -r",
"test": "jest",
"docs": "typedoc"
},
"dependencies": {
"@tempfix/idb": "^8.0.3",
"buffer": "^6.0.3",
"microbundle": "^0.15.1",
"rollup-plugin-polyfill-node": "github:FredKSchott/rollup-plugin-polyfill-node"
},
"peerDependencies": {
"@bsv/sdk": "^1.1.24"
},
"devDependencies": {
"@types/bun": "latest",
"globals": "^15.9.0",
"jsdoc-to-markdown": "^9.0.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.5.3",
"typescript-formatter": "^7.2.2"
}
}