-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 936 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 936 Bytes
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
{
"name": "@dustfoundation/exchanges-signer",
"version": "0.0.7",
"description": "Shared Exchange Signer for Dust Foundation projects",
"repository": "https://github.com/DustFoundation/exchanges-signer",
"typesVersions": {
">=4.2": {
"*": [
"dist/*"
]
}
},
"files": [
"dist"
],
"exports": {
"./*": {
"types": "./dist/*.d.ts",
"node": "./dist/*.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@dustfoundation/eslint-config": "^3.1.1",
"@dustfoundation/prettier-config": "^3.1.1",
"@dustfoundation/ts-config": "^3.1.1",
"@types/node": "^16.11.47",
"eslint": "^8.24.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16"
}
}