@goldskycom/cli 11.4.2 → 13.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldskycom/cli",
3
- "version": "11.4.2",
3
+ "version": "13.0.0",
4
4
  "description": "The Goldsky CLI to deploy subgraphs, index & transform blockchain data, configure webhooks, and access your data in real-time.",
5
5
  "main": "dist/index.js",
6
6
  "keywords": [
@@ -28,11 +28,12 @@
28
28
  "@types/cli-progress": "^3.11.0",
29
29
  "@types/form-data": "^2.5.0",
30
30
  "@types/jszip": "^3.4.1",
31
- "@types/node": "^18.15.0",
31
+ "@types/node": "^22.13.17",
32
32
  "@types/readline-sync": "^1.4.4",
33
33
  "@types/semver": "^7.5.1",
34
34
  "@types/yaml": "^1.9.7",
35
35
  "@types/yargs": "^17.0.7",
36
+ "@yao-pkg/pkg": "^6.3.2",
36
37
  "abitype": "0.1.7",
37
38
  "ajv": "^8.11.2",
38
39
  "axios": "^1.4.0",
@@ -42,7 +43,6 @@
42
43
  "form-data": "^4.0.0",
43
44
  "jszip": "^3.7.1",
44
45
  "ora": "4.1.1",
45
- "pkg": "^5.7.0",
46
46
  "s3-sync-client": "^4.3.1",
47
47
  "semver": "^7.3.7",
48
48
  "simple-update-notifier": "^2.0.0",
@@ -60,18 +60,17 @@
60
60
  "timeago.js": "^4.0.2"
61
61
  },
62
62
  "scripts": {
63
- "lint": "eslint --max-warnings 0 .",
64
- "lint:summary": "pnpm lint --format summary || pnpm lint",
65
- "typecheck": "tsc --noEmit",
66
- "clean": "rimraf ./binaries ./dist ./tsconfig.tsbuildinfo",
63
+ "binaries:build": "pnpm build && rimraf ./binaries && node ./scripts/binaries-build.js",
64
+ "binaries:deploy": "node ./scripts/binaries-deploy.js",
67
65
  "build": "pnpm clean && tsc --noEmit --skipLibCheck && node ./scripts/build.js && chmod a+x bin/goldsky",
68
- "build:binaries": "pnpm build && rimraf ./binaries && node ./scripts/binaries-build.js",
69
- "deploy:binaries": "node ./scripts/binaries-deploy.js",
70
- "dev:debug": "NODE_ENV=development ts-node src/index.ts",
71
- "dev:dist": "NODE_ENV=development node dist/index.js",
72
- "test:unit": "pnpm build && tsc --skipLibCheck && NODE_ENV=unit-tests node --test --test-reporter spec dist",
66
+ "clean": "rimraf ./binaries ./dist ./tsconfig.tsbuildinfo",
67
+ "dev": "NODE_ENV=development ts-node src/index.ts",
73
68
  "docs:reference:generate": "pnpm build && GOLDSKY_PARSE_CLI_OUTPUT_FOR_DOCS=true ts-node ./scripts/reference-docs/index.ts",
74
69
  "docs:reference:copy": "test -f ./cli-reference.md && test -f ../../../docs/reference/cli.mdx && cp ./cli-reference.md ../../../docs/reference/cli.mdx",
75
- "docs:reference:update": "pnpm docs:reference:generate && pnpm docs:reference:copy"
70
+ "docs:reference:update": "pnpm docs:reference:generate && pnpm docs:reference:copy",
71
+ "lint": "eslint --max-warnings 0 .",
72
+ "lint:summary": "pnpm lint --format summary || pnpm lint",
73
+ "test:unit": "vitest --run",
74
+ "typecheck": "tsc --noEmit"
76
75
  }
77
76
  }