-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.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
{
"name": "@everme/codex",
"version": "0.6.1",
"type": "module",
"description": "Native EverMe lifecycle hooks for Codex.",
"license": "Apache-2.0",
"bin": {
"everme-codex": "./bin/hook.js"
},
"files": [
"bin/",
"src/"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build:marketplace": "node scripts/build-marketplace.mjs",
"pretest": "npm run build:marketplace",
"test": "node --test tests/transcript.test.js tests/adapter.test.js tests/hook.test.js"
},
"keywords": [
"evermind",
"everme",
"codex",
"memory",
"hooks"
],
"homepage": "https://everme.evermind.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/EverMind-AI/EverMe.git",
"directory": "plugins/codex"
},
"bugs": {
"url": "https://github.com/EverMind-AI/EverMe/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@everme/agent-sdk": "^0.6.1"
},
"devDependencies": {
"esbuild": "^0.28.1"
}
}