forked from tehcaw/caw-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 729 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
{
"name": "@cawmmunity/caw-js-sdk",
"version": "0.0.6",
"description": "A sdk to interact with the blockchain and CAW's Social Contracts",
"author": {
"name": "cawmmunity",
"url": "https://caw.is"
},
"license": "MIT",
"private": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"debug": "ts-node --esm src/index.ts",
"dev": "tsup --dts --watch",
"build": "rm -rf dist && tsup --dts",
"pub": "npm publish --access public"
},
"devDependencies": {
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"ethers": "^6.6.7"
}
}