-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
59
{
"name": "@nakedved/ano",
"version": "0.1.0",
"description": "Claude Code plugin for collaborative annotation and review",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ano": "./dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vedpawar2254/Ano.git"
},
"homepage": "https://github.com/vedpawar2254/Ano#readme",
"bugs": {
"url": "https://github.com/vedpawar2254/Ano/issues"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"docs/"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"mcp": "node dist/mcp/server.js",
"build:all": "npm run build && cd web && npm run build && cd .. && npm run copy:web",
"copy:web": "rm -rf dist/web && mkdir -p dist/web && cp -r web/dist/* dist/web/",
"prepublishOnly": "npm run build:all"
},
"keywords": [
"claude-code",
"annotation",
"review",
"collaboration",
"ano",
"claude-code-plugin",
"mcp",
"claude-code-extension"
],
"author": "Ved Pawar <ved.pawar2024@rishihood.edu.in>",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.0.8",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"zod": "^4.3.5"
}
}