-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.76 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
{
"name": "@bsv/auth",
"version": "0.1.0",
"description": "Signed, expiry-bound, single-use wallet auth proofs for BSV apps.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bsv-blockchain/ts-stack.git",
"directory": "packages/middleware/auth"
},
"scripts": {
"test": "jest --runInBand",
"lint:ci-disabled": "ts-standard src/**/*.ts",
"lint": "ts-standard --fix src/**/*.ts",
"test:watch": "jest --watch",
"test:perf": "jest --config jest.perf.config.js --runInBand",
"test:coverage-disabled": "jest --coverage",
"build": "tsup && tsc --emitDeclarationOnly"
},
"keywords": [
"bsv",
"auth",
"wallet",
"nonce",
"signature"
],
"author": "BSV Blockchain Association",
"license": "ISC",
"type": "commonjs",
"dependencies": {},
"devDependencies": {
"@jest/globals": "^30.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-standard": "^12.0.2",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"@bsv/sdk": "workspace:^"
},
"ts-standard": {
"project": "tsconfig.eslint.json",
"ignore": [
"dist"
]
},
"bugs": {
"url": "https://github.com/bsv-blockchain/ts-stack/issues"
},
"homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/middleware/auth#readme",
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
}
}