-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.58 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.58 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
60
61
62
63
64
65
{
"name": "@squidcode/novadev",
"version": "1.3.7",
"description": "Connect AI agents to your teams in the Nova system",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"novadev": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "npm run typecheck && npm run lint && npm run format:check && npm test",
"prepublishOnly": "npm run check && npm run build",
"prepare": "husky"
},
"keywords": [
"nova",
"ai-agents",
"cli",
"mcp",
"team-management"
],
"author": "Squidcode <hello@squidcode.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/squidcode/novadev.git"
},
"homepage": "https://github.com/squidcode/novadev#readme",
"bugs": {
"url": "https://github.com/squidcode/novadev/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^13.1.0",
"pusher-js": "^8.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.0",
"lint-staged": "^15.4.0",
"prettier": "^3.5.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.25.0",
"vitest": "^4.0.18"
}
}