-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 986 Bytes
/
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
{
"version": "1.3.0",
"name": "@script3/soroban-governor-sdk",
"description": "Javascript SDK for the Soroban Governor",
"type": "module",
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.mjs"
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"typings": "dist/types/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/script3/soroban-governor-js-sdk.git"
},
"bugs": {
"url": "https://github.com/script3/soroban-governor-js-sdk/issues"
},
"homepage": "https://github.com/script3/soroban-governor-js-sdk#readme",
"dependencies": {
"buffer": "6.0.3",
"@stellar/stellar-sdk": "13.0.0"
},
"devDependencies": {
"typescript": "5.3.3"
}
}