-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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": "@sin7y/ola-js-sdk",
"version": "0.0.16",
"description": "JavaScript SDK for ola.",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --timeout 60000",
"build": "rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"watch": "rollup -w -c rollup.config.ts --configPlugin @rollup/plugin-typescript",
"release": "./build.sh && np --any-branch --no-tests"
},
"keywords": [
"crypto",
"sdk",
"ola"
],
"files": [
"dist/"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"chai": "^5.0.3",
"mocha": "^10.2.0",
"np": "^9.2.0",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@sin7y/ola-abi-wasm": "^0.0.4",
"@sin7y/ola-crypto": "^0.0.4",
"axios": "^1.6.7",
"ethers": "^6.10.0"
},
"peerDependencies": {
"@sin7y/ola-abi-wasm": "^0.0.4",
"@sin7y/ola-crypto": "^0.0.4",
"ethers": "^6.10.0"
},
"publishConfig": {
"access": "public"
}
}