-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 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
{
"name": "animus-client",
"version": "1.21.0",
"description": "Unified AI platform combining text, vision, image generation, and tools in one simple SDK. Build powerful AI conversations with minimal code.",
"type": "module",
"main": "dist/animus-sdk.umd.js",
"module": "dist/animus-sdk.esm.js",
"types": "dist/types/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepare": "npm run build",
"test": "vitest run",
"demo": "npm run demo:build && npm run demo:start",
"demo:build": "npm run build",
"demo:start": "concurrently \"npm run demo:auth\" \"npm run demo:serve\"",
"demo:auth": "cd examples/auth-server && npm start",
"demo:serve": "wait-on http://localhost:3001 && http-server . -p 8080 -o examples/test-sdk/"
},
"keywords": [
"animus",
"ai",
"sdk",
"browser"
],
"author": "Animus AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AnimusAILabs/animus-client.git"
},
"bugs": {
"url": "https://github.com/AnimusAILabs/animus-client/issues"
},
"homepage": "https://github.com/AnimusAILabs/animus-client#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"concurrently": "^8.2.2",
"http-server": "^14.1.1",
"jsdom": "^26.1.0",
"rollup": "^4.0.0",
"semantic-release": "^24.2.3",
"tslib": "^2.5.0",
"typescript": "^5.0.0",
"vitest": "^3.1.2",
"wait-on": "^8.0.1"
},
"files": [
"dist"
],
"dependencies": {
"eventemitter3": "^5.0.1",
"jwt-decode": "^4.0.0",
"livekit-client": "^2.11.3"
}
}