-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "dexy-sdk-ts",
"version": "0.3.3",
"description": "a ts sdk for dexy protocol",
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"format": "prettier --write . --ignore-path ./.gitignore",
"lint": "eslint \"{src,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-for-uss/dexy-sdk-ts.git"
},
"author": "code-for-uss",
"license": "ISC",
"bugs": {
"url": "https://github.com/code-for-uss/dexy-sdk-ts/issues"
},
"homepage": "https://github.com/code-for-uss/dexy-sdk-ts#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ergo-lib-wasm-nodejs": "^0.23.0",
"prettier": "^3.0.1"
},
"dependencies": {
"@fleet-sdk/common": "^0.3.4",
"@fleet-sdk/core": "^0.3.4",
"@fleet-sdk/serializer": "^0.3.4",
"@fleet-sdk/wallet": "^0.3.4"
}
}