-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 819 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "codemuse",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "AI Onboarding and peer programming assistant.",
"workspaces": [
"packages/app",
"packages/vscode",
"packages/indexer"
],
"scripts": {
"sync:scip-python": "rsync -ax --exclude='node_modules/' --exclude='.git/' ../scip-python/* ./packages/scip-python && npm install --workspace=pyright-root && cd packages/scip-python/packages/pyright-scip && npm run build",
"sync:scip-typescript": "cd ../scip-typescript && npm run build && cd ../codemuse && rsync -ax --exclude='node_modules/' --exclude='.git/' ../scip-typescript/* ./packages/scip-typescript"
},
"author": "CodeMuse <contact@codemuse.app>",
"dependencies": {
"graphology-operators": "^1.6.0",
"posthog-node": "^3.1.3"
}
}