-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "avail-js-sdk",
"version": "0.1.11",
"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",
"doc": "npx typedoc --out docs src"
},
"keywords": [
"avail",
"data",
"blockchain",
"substrate",
"sdk",
"typescript"
],
"author": "Ghali Leouarz",
"license": "ISC",
"bugs": {
"url": "https://github.com/availproject/avail-js/issues"
},
"homepage": "https://github.com/availproject/avail-js#readme",
"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",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@polkadot/api": "^10.10.1"
}
}