-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
49
50
51
52
{
"name": "brij-partner-sdk",
"version": "0.6.2",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "npm run test:esm && npm run test:cjs",
"test:esm": "node test/esm-test.js",
"test:cjs": "node test/cjs-test.cjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bufbuild/protobuf": "^2.2.0",
"axios": "^1.7.5",
"bs58": "^6.0.0",
"ed2curve": "^0.3.0",
"jose": "^5.8.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/ed2curve": "^0.2.4",
"@types/node": "^22.7.4",
"eslint": "^9.9.1",
"rollup": "^4.9.0",
"rollup-plugin-dts": "^6.0.0",
"ts-proto": "^2.2.4",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.3.0"
}
}