-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"name": "memflywheel",
"version": "0.1.1",
"private": true,
"description": "File-native long-term memory layer for AI agents.",
"license": "Apache-2.0",
"type": "module",
"keywords": [
"agent-memory",
"llm",
"memory",
"typescript"
],
"engines": {
"node": ">=22.19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iflytek/memflywheel.git"
},
"bugs": {
"url": "https://github.com/iflytek/memflywheel/issues"
},
"homepage": "https://github.com/iflytek/memflywheel#readme",
"packageManager": "pnpm@11.5.2",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"clean": "pnpm -r run clean",
"lint": "eslint \"packages/*/src/**/*.ts\"",
"lint:fix": "eslint \"packages/*/src/**/*.ts\" --fix",
"format": "prettier --write \"**/*.{ts,mts,mjs,json,md,yml,yaml}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{ts,mts,mjs,json,md,yml,yaml}\" --ignore-path .prettierignore",
"ci": "pnpm run clean && pnpm run lint && pnpm run format:check && pnpm run build && pnpm run test && pnpm run pack:dry-run",
"pack:dry-run": "pnpm --filter @iflytekopensource/memflywheel run build && pnpm --filter @iflytekopensource/memflywheel pack --dry-run --json",
"publish:npm": "node scripts/publish-npm.mjs"
},
"devDependencies": {
"@memflywheel/embeddings": "workspace:*",
"@memflywheel/sdk": "workspace:*",
"@memflywheel/skills": "workspace:*",
"@types/node": "^22.20.1",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"prettier": "^3.9.6",
"typebox": "^1.3.19",
"typescript": "^5.5.4"
},
"main": "eslint.config.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"author": ""
}