-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "@crypto.com/developer-platform-client",
"version": "1.0.8",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/crypto-com/developer-platform-client-ts.git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"publish": "npm publish --access public",
"format": "prettier --write \"src/**/*.ts\""
},
"author": "[email protected]",
"license": "MIT",
"description": "A typescript client to interact with the crypto.com Developer Platform service",
"keywords": [
"Wallet",
"Token",
"Transaction",
"Blockchain",
"API",
"nodejs"
],
"bugs": {
"url": "https://github.com/crypto-com/developer-platform-client-ts/issues"
},
"homepage": "https://github.com/crypto-com/developer-platform-client-tst#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"prettier": "2.5.1",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"tslib": "^2.6.2"
}
}