@seclai/sdk 0.0.0 → 1.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +13 -2
package/README.md CHANGED
@@ -64,4 +64,4 @@ npm run typecheck
64
64
  npm run build
65
65
  ```
66
66
 
67
- This also regenerates `src/openapi.ts` from `../seclai-python/openapi/seclai.openapi.json`.
67
+ This also regenerates `src/openapi.ts` from `openapi/seclai.openapi.json`.
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "@seclai/sdk",
3
- "version": "0.0.0",
3
+ "version": "1.0.0",
4
4
  "description": "Seclai JavaScript SDK",
5
+ "keywords": [
6
+ "Seclai",
7
+ "ai",
8
+ "agent",
9
+ "vector",
10
+ "knowledge base",
11
+ "cloud"
12
+ ],
5
13
  "license": "MIT",
6
14
  "type": "module",
7
15
  "main": "./dist/index.cjs",
@@ -28,17 +36,20 @@
28
36
  "scripts": {
29
37
  "version:apply": "node scripts/set-version.mjs apply",
30
38
  "version:restore": "node scripts/set-version.mjs restore",
31
- "generate": "openapi-typescript ../seclai-python/openapi/seclai.openapi.json -o src/openapi.ts",
39
+ "generate": "openapi-typescript openapi/seclai.openapi.json -o src/openapi.ts",
32
40
  "build": "npm run generate && tsup src/index.ts --format esm,cjs --dts",
33
41
  "build:versioned": "npm run version:apply && npm run build && npm run version:restore",
34
42
  "publish:ci": "npm run version:apply && npm run build && npm publish --provenance --access public --ignore-scripts && npm run version:restore",
35
43
  "docs": "npm run generate && typedoc",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
36
46
  "typecheck": "tsc -p tsconfig.json --noEmit"
37
47
  },
38
48
  "devDependencies": {
39
49
  "openapi-typescript": "^7.9.1",
40
50
  "typedoc": "^0.27.6",
41
51
  "tsup": "^8.5.0",
52
+ "vitest": "^2.1.9",
42
53
  "typescript": "^5.7.3"
43
54
  }
44
55
  }