forked from availproject/avail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
51
{
"name": "avail-js-sdk",
"version": "0.2.18",
"description": "Avail library of functions to interact with blockchain and manipulate transactions",
"main": "./build/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "rimraf build && tsc && node ./_scripts/build.mjs",
"publish-avail": "npm run lint && npm run format && npm run build && cd build && npm publish && cd ..",
"test": "npx jest --config jest.config.ts",
"format": "prettier --write .",
"lint": "eslint ./src --ext .js,.ts",
"lint-examples": "eslint ./examples/node-examples --ext .js,.ts"
},
"keywords": [
"avail",
"data",
"blockchain",
"substrate",
"sdk",
"typescript"
],
"author": "Ghali Leouarz",
"license": "ISC",
"bugs": {
"url": "https://github.com/availproject/avail/issues/new/choose"
},
"homepage": "https://github.com/availproject/avail/blob/main/avail-js/readme.md",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@polkadot/api": "^10.11.3",
"neverthrow": "^7.0.0"
},
"resolutions": {
"ws": ">=8.17.1"
}
}