@bankofai/x402-core 2.6.0-beta.2 → 2.6.0-beta.4

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,25 +1,16 @@
1
1
  {
2
2
  "name": "@bankofai/x402-core",
3
- "version": "2.6.0-beta.2",
3
+ "version": "2.6.0-beta.4",
4
4
  "main": "./dist/cjs/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/cjs/index.d.ts",
7
- "scripts": {
8
- "start": "tsx --env-file=.env index.ts",
9
- "build": "tsup",
10
- "test": "vitest run",
11
- "test:watch": "vitest",
12
- "test:integration": "vitest run test/integrations",
13
- "watch": "tsc --watch",
14
- "format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
15
- "format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
16
- "lint": "eslint . --ext .ts --fix",
17
- "lint:check": "eslint . --ext .ts"
18
- },
19
7
  "keywords": [],
20
8
  "license": "Apache-2.0",
21
9
  "author": "bankofai",
22
- "repository": "https://github.com/bankofai/x402",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/BofAI/x402.git"
13
+ },
23
14
  "description": "x402 Payment Protocol",
24
15
  "devDependencies": {
25
16
  "@eslint/js": "^9.24.0",
@@ -135,5 +126,17 @@
135
126
  },
136
127
  "files": [
137
128
  "dist"
138
- ]
139
- }
129
+ ],
130
+ "scripts": {
131
+ "start": "tsx --env-file=.env index.ts",
132
+ "build": "tsup",
133
+ "test": "vitest run",
134
+ "test:watch": "vitest",
135
+ "test:integration": "vitest run test/integrations",
136
+ "watch": "tsc --watch",
137
+ "format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
138
+ "format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
139
+ "lint": "eslint . --ext .ts --fix",
140
+ "lint:check": "eslint . --ext .ts"
141
+ }
142
+ }