-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@deltadefi-protocol/typescript-sdk",
"description": "The Typescript SDK for interacting with DeltaDeFi protocol",
"version": "0.3.9",
"main": "./dist/index.cjs",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"author": {
"name": "hinson",
"email": "hinson.wong@deltadefi.io"
},
"homepage": "https://www.deltadefi.io/",
"files": [
"dist/**"
],
"keywords": [
"DeltaDeFi",
"Cardano",
"DeFi",
"Typescript",
"SDK"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"clean": "rm -rf dist && rm -rf node_modules",
"ci": "npm install && npm run lint && npm run build",
"pub": "npm run ci && npm publish --access public",
"lint": "eslint \"src/*.ts\" --fix",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@meshsdk/core": "^1.9.0-beta.0",
"axios": "^1.4.0",
"snake-camel": "^1.0.9",
"ws": "^8.18.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/aws-lambda": "^8.10.114",
"@types/jest": "^29.5.12",
"@types/node": "^20.4.10",
"@types/pg": "^8.10.2",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"commitlint": "^17.4.3",
"dotenv": "^16.4.5",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.1.6"
},
"lint-staged": {
"src/*.{js,ts,}": [
"npm run prettier --write",
"npm run eslint --fix"
]
}
}