-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@bsv/simple",
"version": "0.4.0",
"description": "Simplified, modular helper library for BSV blockchain development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bsv-blockchain/ts-stack.git",
"directory": "packages/helpers/simple"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
},
"./server": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "ts-standard --fix src/**/*.ts",
"lint:ci": "ts-standard src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"bsv",
"bitcoin",
"blockchain",
"wallet",
"inscription",
"messagebox",
"tokens",
"certification"
],
"author": "",
"license": "MIT",
"dependencies": {
"@bsv/message-box-client": "^2.2.0",
"@bsv/wallet-toolbox": "^2.2.0",
"@bsv/wallet-toolbox-client": "^2.2.0"
},
"overrides": {
"minimatch": "^10.2.1"
},
"ts-standard": {
"project": "tsconfig.eslint.json",
"ignore": [
"dist"
]
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"dotenv": "^17.4.2",
"jest": "^30.4.2",
"ts-standard": "^12.0.2",
"typescript": "^6.0.3",
"@bsv/sdk": "workspace:^"
},
"files": [
"dist",
"README.md"
],
"bugs": {
"url": "https://github.com/bsv-blockchain/ts-stack/issues"
},
"homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/helpers/simple#readme",
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
}
}