-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 993 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
{
"name": "@creit.tech/soroban-assets-sdk",
"version": "0.6.0",
"description": "A JS package for interacting with Soroban assets contracts easily",
"main": "lib/index",
"types": "lib/index",
"files": [
"lib",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "npx tsc -p .",
"build:docs": "npx typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts",
"test": "jest"
},
"author": "Creit Technologies LLP",
"license": "MIT",
"devDependencies": {
"@stellar/stellar-sdk": "^11.3.0",
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^4.9.5"
}
}