-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.5 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
55
56
57
{
"name": "@pinetwork-js/sdk",
"description": "Unofficial Pi Network SDK",
"version": "0.7.0",
"main": "build/index.js",
"scripts": {
"prepack": "yarn build",
"build": "tsc --build --clean && tsc",
"lint": "eslint 'src/**/**.{js,ts}'",
"lint:fix": "eslint 'src/**/**.{js,ts}' --fix",
"format": "prettier 'src/**/**.{js,ts}' --write",
"format:check": "prettier 'src/**/**.{js,ts}' --check"
},
"packageManager": "[email protected]",
"author": "Brewal Derouet <[email protected]>",
"license": "PiOS",
"repository": {
"type": "git",
"url": "git+https://github.com/PiNetwork-js/sdk.git"
},
"homepage": "https://github.com/PiNetwork-js/sdk#readme",
"bugs": {
"url": "https://github.com/PiNetwork-js/sdk/issues"
},
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.14.2",
"@pinetwork-js/api-typing": "^0.7.0",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^47.0.0",
"prettier": "3.0.0",
"typescript": "^5.1.6"
},
"files": [
"build"
],
"keywords": [
"pi",
"Pi Network",
"sdk",
"minepi",
"pinetwork-js"
]
}