-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.62 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
52
53
54
{
"name": "avail-js-sdk",
"version": "0.4.0",
"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",
"book-build": "./_scripts/book_build.sh",
"book-serve": "./_scripts/book_serve.sh",
"book-deploy": "./_scripts/book_deploy.sh"
},
"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.14",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@polkadot/api": "^14.2.3",
"neverthrow": "^8.1.1"
},
"resolutions": {
"ws": ">=8.17.1"
}
}