-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1007 Bytes
/
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
{
"name": "toucan-sdk",
"version": "0.1.1-alpha",
"description": "A JavaScript SDK for Toucan Protocol. Works in the web browser and Node.js.",
"main": "index.ts",
"scripts": {
"build": "tsc",
"format:check": "prettier --check \"**/*.ts\"",
"format:write": "prettier --write \"**/*.ts\"",
"lint": "eslint '**/*.ts'"
},
"keywords": [
"carbon",
"offset",
"retirement",
"bct",
"nct",
"toucan"
],
"author": "Toucan Protocol",
"license": "ISC",
"dependencies": {
"ethers": "^5.6.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.25",
"chai": "^4.3.6",
"eslint": "^8.15.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}