-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.85 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
{
"name": "@bsv/templates",
"version": "1.9.0",
"type": "module",
"description": "BSV Blockchain Script Templates",
"main": "dist/cjs/mod.js",
"module": "dist/esm/mod.js",
"types": "dist/types/mod.d.ts",
"files": [
"dist",
"src",
"mod.ts",
"LICENSE.txt"
],
"exports": {
".": {
"types": "./dist/types/mod.d.ts",
"import": "./dist/esm/mod.js",
"require": "./dist/cjs/mod.js"
},
"./*.ts": {
"types": "./dist/types/src/*.d.ts",
"import": "./dist/esm/src/*.js",
"require": "./dist/cjs/src/*.js"
}
},
"scripts": {
"test": "npm run build && jest --passWithNoTests",
"test:watch": "npm run build && jest --watch",
"test:coverage": "npm run build && jest --coverage",
"lint": "ts-standard --fix 'src/**/*.ts'",
"build": "tsc -b && tsconfig-to-dual-package tsconfig.cjs.json",
"dev": "tsc -b -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsv-blockchain/ts-stack.git",
"directory": "packages/helpers/ts-templates"
},
"keywords": [
"BSV",
"Blockchain",
"Script",
"Templates",
"Bitcoin",
"SV"
],
"author": "BSV Association",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bsv-blockchain/ts-stack/issues"
},
"homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/helpers/ts-templates#readme",
"devDependencies": {
"@bsv/wallet-toolbox": "^2.3.3",
"@types/jest": "^30.0.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-standard": "^12.0.2",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^7.0.2",
"@bsv/sdk": "workspace:^"
},
"dependencies": {},
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
}
}