-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 990 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 990 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
{
"name": "any-sync-monorepo",
"private": true,
"description": "Monorepo for Any Sync — VS Code extension, Claude Code plugin, and OpenClaw plugin",
"repository": {
"type": "git",
"url": "https://github.com/imink/any-sync"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm -w @any-sync/vscode-extension run compile",
"watch": "npm -w @any-sync/vscode-extension run watch",
"test": "npm -w @any-sync/vscode-extension run test",
"test:all": "npm --workspaces run test",
"lint": "npm -w @any-sync/vscode-extension run lint",
"package": "npm -w @any-sync/vscode-extension run package"
},
"devDependencies": {
"@types/minimatch": "^5.1.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"mocha": "^11.7.5",
"prettier": "^3.0.0",
"typescript": "^5.5.0"
}
}