-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.93 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@studiometa/productive",
"version": "0.10.10",
"private": true,
"description": "Productive.io tools - CLI and MCP server for AI agents and humans",
"keywords": [
"ai-agent",
"api",
"automation",
"cli",
"mcp",
"model-context-protocol",
"productive",
"project-management"
],
"license": "MIT",
"author": "Studio Meta",
"repository": {
"type": "git",
"url": "https://github.com/studiometa/productive-tools"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "npm run dev --workspaces",
"build": "npm run build -w @studiometa/productive-api && (npm run build -w @studiometa/productive-core & npm run build -w @studiometa/productive-sdk & wait) && (npm run build -w @studiometa/productive-cli & npm run build -w @studiometa/productive-mcp & wait)",
"test": "vitest run",
"test:watch": "npm run test:watch --workspaces",
"test:ci": "npm run test:ci --workspaces --if-present",
"test:integration": "vitest run --config tests/integration/vitest.config.ts",
"test:integration:watch": "vitest --config tests/integration/vitest.config.ts",
"test:all": "npm run test && npm run test:integration",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:types": "oxlint --type-aware",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"typecheck": "npm run typecheck --workspaces",
"semgrep": "semgrep scan --config p/typescript --config p/nodejs --config p/secrets --config p/owasp-top-ten --error --exclude='node_modules' --exclude='dist' --exclude='coverage' .",
"semgrep:secrets": "semgrep scan --config p/secrets --error --quiet --exclude='node_modules' --exclude='dist' --exclude='coverage' .",
"check:tests": "sh scripts/check-test-colocation.sh",
"check:commit-msg": "sh scripts/check-commit-msg.sh",
"check": "npm run lint && npm run format:check && npm run typecheck && npm run check:tests",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"version:patch": "npm version --include-workspace-root --workspaces --no-git-tag-version patch",
"version:minor": "npm version --include-workspace-root --workspaces --no-git-tag-version minor",
"version:major": "npm version --include-workspace-root --workspaces --no-git-tag-version major",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@typescript/native-preview": "7.0.0-dev.20260304.1",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"oxfmt": "0.36.0",
"oxlint": "1.51.0",
"oxlint-tsgolint": "^0.16.0",
"vite": "^8.0.7",
"vitest": "^4.1.0-beta.5"
},
"overrides": {
"@hono/node-server": "1.19.13",
"hono": "4.12.12",
"path-to-regexp": "8.4.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,md,yml,yaml}": [
"oxfmt --write"
]
},
"engines": {
"node": ">=24.0.0"
}
}