-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 885 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 885 Bytes
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
{
"name": "user-intent-kit",
"version": "0.1.0",
"description": "Cross-device user intent state for AI agents. Profile + live signals + derived state.",
"type": "module",
"main": "src/index.js",
"bin": {
"intent": "./bin/intent.js"
},
"exports": {
".": "./src/index.js",
"./adapters/desktop": "./src/adapters/desktop.js",
"./adapters/openclaw": "./src/adapters/openclaw.js",
"./adapters/iak": "./src/adapters/iak.js",
"./adapters/browser": "./src/adapters/browser.js"
},
"scripts": {
"test": "node --test test/client.test.js"
},
"keywords": [
"agent",
"intent",
"cross-device",
"ai",
"openclaw",
"antfarm"
],
"author": "ThinkOffApp",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/ThinkOffApp/user-intent-kit.git"
},
"engines": {
"node": ">=18"
}
}