-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "svector-sdk",
"version": "1.7.6",
"description": "Official JavaScript and TypeScript SDK for accessing SVECTOR APIs.",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"browser": {
"./dist/src/index.js": "./dist/src/index.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.js",
"browser": "./dist/src/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"scripts": {
"build": "npm run clean && tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build && npm run validate",
"validate": "node dist/examples/validate-sdk.js",
"test": "npm run type-check && npm run validate",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"examples:basic": "npm run build && node dist/examples/basic-chat.js",
"examples:streaming": "npm run build && node dist/examples/streaming-chat.js",
"examples:rag": "npm run build && node dist/examples/file-upload-rag.js",
"examples:advanced": "npm run build && node dist/examples/advanced-rag.js",
"examples:vision": "npm run build && node dist/examples/advanced-vision.js",
"examples:comprehensive": "npm run build && node dist/examples/comprehensive-demo.js",
"setup:github-auth": "./scripts/setup-github-auth.sh",
"publish:dual": "./scripts/publish-dual.sh",
"publish:github": "npm publish --registry=https://npm.pkg.github.com",
"publish:npm": "npm publish --registry=https://registry.npmjs.org/",
"publish:dry-run": "npm publish --dry-run"
},
"keywords": [
"svector",
"ai",
"machine-learning",
"api",
"typescript",
"javascript",
"llm",
"spec-chat",
"artificial-intelligence",
"conversational-ai",
"language-models"
],
"author": "SVECTOR Team <support@svector.co.in>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SVECTOR-CORPORATION/svector-node.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://www.svector.co.in",
"bugs": {
"url": "https://github.com/SVECTOR-CORPORATION/svector-node/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"funding": {
"type": "individual",
"url": "https://www.svector.co.in/support"
}
}