@openmeter/sdk 1.0.0-beta.4 → 1.0.0-beta.41

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,54 +1,53 @@
1
1
  {
2
- "name": "@openmeter/sdk",
3
- "version": "1.0.0-beta.4",
4
- "description": "Client for OpenMeter: Real-Time and Scalable Usage Metering",
5
- "license": "Apache 2.0",
6
- "homepage": "https://openmeter.io",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/openmeterio/openmeter.git",
10
- "directory": "api/client/node"
11
- },
12
- "main": "./dist/index.js",
13
- "types": "./dist/index.d.ts",
14
- "type": "module",
15
- "engines": {
16
- "node": ">=18.16.1"
17
- },
18
- "scripts": {
19
- "lint": "eslint . --ext .ts --format=pretty",
20
- "format": "prettier --write .",
21
- "build": "rimraf ./dist && tsc --build",
22
- "generate": "rimraf ./schemas && openapi-typescript \"../../openapi.yaml\" --output schemas/",
23
- "pretest": "npm run build",
24
- "test": "vitest --run --threads=false",
25
- "test:watch": "vitest --watch --threads=false",
26
- "prepublishOnly": "npm run generate && npm run build && npm run test && npm run lint"
27
- },
28
- "devDependencies": {
29
- "@types/node": "^20.5.0",
30
- "@types/node-fetch": "^2.6.4",
31
- "@typescript-eslint/eslint-plugin": "^6.4.0",
32
- "@typescript-eslint/parser": "^6.4.0",
33
- "eslint": "^8.47.0",
34
- "eslint-config-prettier": "^9.0.0",
35
- "eslint-formatter-pretty": "^5.0.0",
36
- "eslint-import-resolver-typescript": "^3.6.0",
37
- "eslint-plugin-compat": "^4.1.4",
38
- "eslint-plugin-import": "^2.28.0",
39
- "eslint-plugin-require-extensions": "^0.1.3",
40
- "eslint-plugin-unused-imports": "^3.0.0",
41
- "eslint-plugin-vitest": "^0.2.8",
42
- "openapi-typescript": "^6.5.0",
43
- "prettier": "^3.0.1",
44
- "rimraf": "^5.0.1",
45
- "typescript": "^5.1.6",
46
- "vitest": "^0.34.1"
47
- },
48
- "browserslist": [
49
- "current node"
50
- ],
51
- "dependencies": {
52
- "undici": "^5.23.0"
53
- }
2
+ "name": "@openmeter/sdk",
3
+ "version": "1.0.0-beta.41",
4
+ "description": "Client for OpenMeter: Real-Time and Scalable Usage Metering",
5
+ "license": "Apache 2.0",
6
+ "homepage": "https://openmeter.io",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/openmeterio/openmeter.git",
10
+ "directory": "api/client/node"
11
+ },
12
+ "main": "./dist/index.js",
13
+ "types": "./dist/index.d.ts",
14
+ "type": "module",
15
+ "engines": {
16
+ "node": ">=18.16.1"
17
+ },
18
+ "devDependencies": {
19
+ "@types/node": "^20.9.4",
20
+ "@types/node-fetch": "2.6.7",
21
+ "@typescript-eslint/eslint-plugin": "6.9.0",
22
+ "@typescript-eslint/parser": "6.9.0",
23
+ "eslint": "8.52.0",
24
+ "eslint-config-prettier": "9.0.0",
25
+ "eslint-formatter-pretty": "5.0.0",
26
+ "eslint-import-resolver-typescript": "3.6.1",
27
+ "eslint-plugin-compat": "4.2.0",
28
+ "eslint-plugin-import": "2.29.0",
29
+ "eslint-plugin-require-extensions": "0.1.3",
30
+ "eslint-plugin-unused-imports": "3.0.0",
31
+ "eslint-plugin-vitest": "0.3.2",
32
+ "openapi-typescript": "6.7.1",
33
+ "prettier": "3.1.0",
34
+ "rimraf": "5.0.5",
35
+ "typescript": "5.2.2",
36
+ "vitest": "0.34.6"
37
+ },
38
+ "browserslist": [
39
+ "current node"
40
+ ],
41
+ "dependencies": {
42
+ "undici": "^5.27.2"
43
+ },
44
+ "scripts": {
45
+ "lint": "eslint . --ext .ts --format=pretty",
46
+ "format": "prettier --write .",
47
+ "build": "rimraf ./dist && tsc --build",
48
+ "generate": "rimraf ./schemas && openapi-typescript '../../openapi.yaml' --output schemas/openapi.ts && prettier --write schemas/",
49
+ "pretest": "pnpm run build",
50
+ "test": "vitest --run --threads=false",
51
+ "test:watch": "vitest --watch --threads=false"
52
+ }
54
53
  }