-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@akashnetwork/akash-api",
"version": "0.0.0",
"description": "Akash API TypeScript client",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/akash-network/akash-api",
"directory": "ts"
},
"license": "Apache-2.0",
"author": "Akash Network Team",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json && npm run format",
"postbuild": "script/generate-exports.js",
"format": "prettier --write \"$AKASH_TS_ROOT/**/*.{js,jsx,ts,tsx,css,json}\" --config ./.prettierrc --log-level silent",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "jest --selectProjects unit functional",
"test:cov": "jest --selectProjects unit functional --coverage",
"test:functional": "jest --selectProjects functional",
"test:functional:cov": "jest --selectProjects functional --coverage",
"test:functional:watch": "jest --selectProjects functional --watch",
"test:unit": "jest --selectProjects unit",
"test:unit:cov": "jest --selectProjects unit --coverage",
"test:unit:watch": "jest --selectProjects unit --watch",
"test:watch": "jest --selectProjects unit functional --watch"
},
"lint-staged": {
"*.json": [
"sort-json"
],
"*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"npm run format"
],
"package.json": [
"script/remove-exports.js"
]
},
"dependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/github": "^10.0.3",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release-commit-filter": "^1.0.2",
"sort-json": "^2.0.1",
"ts-jest": "^29.1.2",
"ts-proto": "^1.169.1",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.10.6"
}
}