-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.96 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
{
"name": "@sipheron/vdr-core",
"version": "1.0.0",
"description": "SipHeron VDR-CORE Official JavaScript/TypeScript SDK. Cryptographically anchor documents to Solana.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/hash/browser.d.ts",
"require": "./dist/hash/browser.js",
"default": "./dist/hash/browser.js"
}
},
"files": [
"dist",
"examples",
"scripts"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"postinstall": "node scripts/postinstall.js",
"login:chrome": "BROWSER='/mnt/c/Program Files/Google/Chrome/Application/chrome.exe' npm login",
"publish:chrome": "BROWSER='/mnt/c/Program Files/Google/Chrome/Application/chrome.exe' npm publish",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"document-verification",
"blockchain",
"solana",
"sha256",
"tamper-proof",
"notarization",
"vdr",
"sipheron"
],
"author": "SipHeron VDR <admin@sipheron.com>",
"license": "Apache-2.0",
"homepage": "https://app.sipheron.com",
"repository": {
"type": "git",
"url": "https://github.com/SipHeron-VDR/vdr-core"
},
"bugs": {
"url": "https://github.com/SipHeron-VDR/vdr-core/issues",
"email": "security@sipheron.com"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"axios": "^1.6.0",
"pdf-lib": "^1.17.1"
},
"peerDependencies": {
"@solana/web3.js": "^1.98.4"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@solana/web3.js": "^1.98.4",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}