-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "vechain-sdk-js-tutorial",
"version": "1.0.0",
"main": "./src/index.ts",
"scripts": {
"lint": "eslint src",
"postinstall": "husky"
},
"keywords": [
"VeChain",
"blockchain",
"dApp",
"SDK",
"thor",
"web3"
],
"author": "VeChain Foundation",
"license": "MIT",
"description": "VeChain SDK Tutorial for NodeJS.",
"dependencies": {
"@vechain/sdk-core": "1.0.0-rc.1",
"bignumber.js": "^9.1.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"commitlint": "^19.5.0",
"eslint": "^9.12.0",
"eslint-config-love": "^v87.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}