-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 KB
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": "@pinetwork-js/sdk",
"version": "0.1.0",
"description": "Unofficial Pi Network SDK",
"main": "build/index.js",
"scripts": {
"prepack": "yarn build",
"build": "rimraf build && tsc",
"lint": "eslint src --ext ts",
"lint-fix": "yarn lint --fix",
"format": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PiNetwork-js/sdk.git"
},
"author": "Brewal Derouet <brewal_derouet@hotmail.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PiNetwork-js/sdk/issues"
},
"homepage": "https://github.com/PiNetwork-js/sdk#readme",
"files": [
"build"
],
"keywords": [
"pi",
"Pi Network",
"sdk",
"minepi",
"pinetwork-js"
],
"devDependencies": {
"@microsoft/tsdoc": "^0.13.2",
"@pinetwork-js/api-typing": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.8.0-125",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unicorn": "^34.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.4"
},
"dependencies": {
"axios": "^0.21.1"
}
}