-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
47
48
{
"name": "resilientdb-javascript-sdk",
"version": "0.1.14",
"description": "Resilient DB JavaScript SDK",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsup",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelili/resilientdb-javascript-sdk.git"
},
"keywords": [
"resilientdb",
"javascript",
"sdk"
],
"author": "Samuel Li, Christopher Chen, Jamie Hsi, Shrey Gupta, Tyler Beer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/samuelili/resilientdb-javascript-sdk/issues"
},
"homepage": "https://github.com/samuelili/resilientdb-javascript-sdk#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@types/jest": "^29.5.7",
"babel-jest": "^29.7.0",
"bs58": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"tweetnacl": "^1.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"axios": "^1.6.2",
"node-fetch": "^3.3.2"
}
}