exa-js 2.0.6 → 2.0.8

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": "exa-js",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "Exa SDK for Node.js and the browser",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -20,24 +20,6 @@
20
20
  "./package.json": "./package.json"
21
21
  },
22
22
  "types": "./dist/index.d.ts",
23
- "scripts": {
24
- "build-fast": "tsup src/index.ts --format cjs,esm",
25
- "build": "tsup",
26
- "test": "vitest run",
27
- "test:unit": "vitest run --config vitest.unit.config.ts",
28
- "test:integration": "vitest run --config vitest.integration.config.ts",
29
- "typecheck": "tsc --noEmit",
30
- "typecheck:examples": "tsc --noEmit examples/**/*.ts",
31
- "generate:types:websets": "openapi-typescript https://raw.githubusercontent.com/exa-labs/openapi-spec/refs/heads/master/exa-websets-spec.yaml --enum --root-types --alphabetize --root-types-no-schema-prefix --output ./src/websets/openapi.ts && npm run format:websets",
32
- "format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
33
- "format:websets": "prettier --write src/websets/openapi.ts",
34
- "build:beta": "cross-env NPM_CONFIG_TAG=beta npm run build",
35
- "version:beta": "npm version prerelease --preid=beta",
36
- "version:stable": "npm version patch",
37
- "publish:beta": "npm run version:beta && npm run build:beta && npm publish --tag beta",
38
- "publish:stable": "npm run version:stable && npm run build && npm publish",
39
- "prepublishOnly": "npm run build"
40
- },
41
23
  "license": "MIT",
42
24
  "devDependencies": {
43
25
  "@types/node": "~22.14.0",
@@ -78,5 +60,22 @@
78
60
  "bugs": {
79
61
  "url": "https://github.com/exa-labs/exa-js/issues"
80
62
  },
81
- "homepage": "https://github.com/exa-labs/exa-js#readme"
82
- }
63
+ "homepage": "https://github.com/exa-labs/exa-js#readme",
64
+ "scripts": {
65
+ "build-fast": "tsup src/index.ts --format cjs,esm",
66
+ "build": "tsup",
67
+ "test": "vitest run",
68
+ "test:unit": "vitest run --config vitest.unit.config.ts",
69
+ "test:integration": "vitest run --config vitest.integration.config.ts",
70
+ "typecheck": "tsc --noEmit",
71
+ "typecheck:examples": "tsc --noEmit examples/**/*.ts",
72
+ "generate:types:websets": "openapi-typescript https://raw.githubusercontent.com/exa-labs/openapi-spec/refs/heads/master/exa-websets-spec.yaml --enum --root-types --alphabetize --root-types-no-schema-prefix --output ./src/websets/openapi.ts && npm run format:websets",
73
+ "format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
74
+ "format:websets": "prettier --write src/websets/openapi.ts",
75
+ "build:beta": "cross-env NPM_CONFIG_TAG=beta npm run build",
76
+ "version:beta": "npm version prerelease --preid=beta",
77
+ "version:stable": "npm version patch",
78
+ "publish:beta": "npm run version:beta && npm run build:beta && npm publish --tag beta",
79
+ "publish:stable": "npm run version:stable && npm run build && npm publish"
80
+ }
81
+ }