|
1 | 1 | {
|
2 |
| - "name": "@akashnetwork/akashjs", |
3 |
| - "version": "0.5.11", |
4 |
| - "description": "Akash Network JS SDK", |
5 |
| - "repository": { |
6 |
| - "url": "https://github.com/ovrclk/akashjs" |
7 |
| - }, |
8 |
| - "license": "Apache-2.0", |
9 | 2 | "author": "",
|
10 |
| - "main": "build/index.js", |
11 | 3 | "browser": {
|
12 | 4 | "fs": false,
|
13 | 5 | "os": false,
|
14 | 6 | "path": false
|
15 | 7 | },
|
16 |
| - "types": "build/", |
17 |
| - "files": [ |
18 |
| - "umd/", |
19 |
| - "build/**/*.d.ts", |
20 |
| - "build/**/*.js" |
21 |
| - ], |
22 |
| - "scripts": { |
23 |
| - "build": "rimraf build && npm run build:tsc && npm run build:build", |
24 |
| - "build:build": "webpack", |
25 |
| - "build:production": "NODE_ENV=production npm run build:tsc && npm run build:build", |
26 |
| - "build:tsc": "rimraf build && tsc", |
27 |
| - "dev:watch": "tsc -- --watch", |
28 |
| - "format": "prettier --write './**/*.{js,ts,json}' --config ./.prettierrc", |
29 |
| - "lint": "eslint . --ext .js,.ts,.json", |
30 |
| - "lint:fix": "npm run lint -- --fix", |
31 |
| - "prepare": "husky", |
32 |
| - "prepublishOnly": "npm run build:production", |
33 |
| - "test": "npm run test:unit", |
34 |
| - "test:cov": "jest --selectProjects unit functional --coverage", |
35 |
| - "test:unit": "tap --ts tests/test_*.ts && jest --selectProjects unit", |
36 |
| - "test:unit-snapshot": "tap --ts --snapshot tests/test_*.ts", |
37 |
| - "test:unit:cov": "jest --selectProjects unit --coverage", |
38 |
| - "test:unit:watch": "jest --selectProjects unit --watch" |
39 |
| - }, |
40 |
| - "lint-staged": { |
41 |
| - "*.{js,ts}": [ |
42 |
| - "npm run format" |
43 |
| - ] |
44 |
| - }, |
45 | 8 | "dependencies": {
|
46 | 9 | "@cosmjs/launchpad": "^0.27.0",
|
47 | 10 | "@cosmjs/proto-signing": "^0.28.11",
|
|
59 | 22 | "pkijs": "^3.0.0",
|
60 | 23 | "process": "^0.11.10",
|
61 | 24 | "pvutils": "^1.0.17",
|
62 |
| - "simple-jsonrpc-js": "^1.2.0" |
| 25 | + "simple-jsonrpc-js": "^1.2.0", |
| 26 | + "sort-json": "^2.0.1" |
63 | 27 | },
|
| 28 | + "description": "Akash Network JS SDK", |
64 | 29 | "devDependencies": {
|
| 30 | + "@commitlint/cli": "^19.2.2", |
| 31 | + "@commitlint/config-conventional": "^19.2.2", |
65 | 32 | "@faker-js/faker": "^8.4.1",
|
| 33 | + "@semantic-release/changelog": "^6.0.3", |
| 34 | + "@semantic-release/commit-analyzer": "^12.0.0", |
| 35 | + "@semantic-release/git": "^10.0.1", |
| 36 | + "@semantic-release/github": "^10.0.3", |
| 37 | + "@semantic-release/release-notes-generator": "^13.0.0", |
66 | 38 | "@types/atob": "^2.1.2",
|
67 | 39 | "@types/jest": "^29.5.12",
|
68 | 40 | "@types/js-yaml": "^4.0.5",
|
|
71 | 43 | "@types/sinon": "^10.0.11",
|
72 | 44 | "@types/tap": "^15.0.5",
|
73 | 45 | "@typescript-eslint/eslint-plugin": "^7.2.0",
|
| 46 | + "commitlint": "^19.2.2", |
| 47 | + "conventional-changelog-conventionalcommits": "^7.0.2", |
74 | 48 | "husky": "^9.0.11",
|
75 | 49 | "jest": "^29.7.0",
|
76 | 50 | "lint-staged": "^15.2.2",
|
|
89 | 63 | },
|
90 | 64 | "engines": {
|
91 | 65 | "node": ">18.0.0"
|
92 |
| - } |
| 66 | + }, |
| 67 | + "files": [ |
| 68 | + "umd/", |
| 69 | + "build/**/*.d.ts", |
| 70 | + "build/**/*.js" |
| 71 | + ], |
| 72 | + "license": "Apache-2.0", |
| 73 | + "lint-staged": { |
| 74 | + "*.{js,jsx,ts,tsx}": [ |
| 75 | + "npm run test", |
| 76 | + "npm run lint:fix", |
| 77 | + "npm run format" |
| 78 | + ], |
| 79 | + "package.json": [ |
| 80 | + "sort-json package.json" |
| 81 | + ], |
| 82 | + "tsconfig.json": [ |
| 83 | + "sort-json tsconfig.json" |
| 84 | + ] |
| 85 | + }, |
| 86 | + "main": "build/index.js", |
| 87 | + "name": "@akashnetwork/akashjs", |
| 88 | + "repository": { |
| 89 | + "url": "https://github.com/ovrclk/akashjs" |
| 90 | + }, |
| 91 | + "scripts": { |
| 92 | + "build": "rimraf build && npm run build:tsc && npm run build:build", |
| 93 | + "build:build": "webpack", |
| 94 | + "build:production": "NODE_ENV=production npm run build:tsc && npm run build:build", |
| 95 | + "build:tsc": "rimraf build && tsc", |
| 96 | + "commitlint": "commitlint --edit", |
| 97 | + "dev:watch": "tsc -- --watch", |
| 98 | + "format": "prettier --write './**/*.{js,ts,json}' --config ./.prettierrc", |
| 99 | + "lint": "eslint . --ext .js,.ts,.json -c .eslintrc.json", |
| 100 | + "lint:fix": "npm run lint -- --fix", |
| 101 | + "prepare": "husky", |
| 102 | + "prepublishOnly": "npm run build:production", |
| 103 | + "test": "npm run test:unit", |
| 104 | + "test:cov": "jest --selectProjects unit functional --coverage", |
| 105 | + "test:unit": "tap --ts tests/test_*.ts && jest --selectProjects unit", |
| 106 | + "test:unit-snapshot": "tap --ts --snapshot tests/test_*.ts", |
| 107 | + "test:unit:cov": "jest --selectProjects unit --coverage", |
| 108 | + "test:unit:watch": "jest --selectProjects unit --watch" |
| 109 | + }, |
| 110 | + "types": "build/", |
| 111 | + "version": "0.5.11" |
93 | 112 | }
|
0 commit comments