forked from Creit-Tech/sorobandomains-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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": "@creit.tech/sorobandomains-sdk",
"version": "0.1.3",
"description": "An SDK to easily fetch domains from the sorobandomains.org protocol",
"license": "MIT",
"author": {
"name": "Creit Technologies LLP",
"url": "https://creit.tech"
},
"main": "build/index",
"typings": "build/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Creit-Tech/sorobandomains-sdk-js.git"
},
"scripts": {
"build": "pnpm exec rimraf ./build && pnpm exec tsc",
"test": "pnpm exec jest"
},
"engines": {
"node": ">=16"
},
"keywords": [],
"dependencies": {
"buffer": "^6.0.3",
"js-sha3": "^0.9.3"
},
"devDependencies": {
"@stellar/stellar-sdk": "^12.3.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"build",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
]
}