-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.84 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
{
"name": "stackglass",
"version": "1.1.0",
"private": true,
"description": "See what your project is actually doing. Developer observability and verification for Cursor.",
"license": "MIT",
"type": "module",
"packageManager": "npm@11.13.0",
"engines": {
"node": ">=22.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/theworker02/stackglass.git"
},
"homepage": "https://theworker02.github.io/stackglass/",
"bugs": {
"url": "https://github.com/theworker02/stackglass/issues"
},
"workspaces": [
"packages/core",
"packages/ui",
"cli",
"servers/mcp",
"apps/docs",
"apps/dashboard"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "tsc -b --pretty",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:dev": "npm run dev -w @stackglass/docs",
"docs:build": "npm run build -w @stackglass/docs",
"dashboard:dev": "npm run dev -w @stackglass/dashboard",
"dashboard:build": "npm run build -w @stackglass/dashboard",
"plugin:build": "node scripts/build-plugin.mjs",
"ci": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build && node cli/dist/bin.js help && npm run docs:build && npm run dashboard:build && npm run plugin:build",
"glass": "node cli/dist/bin.js",
"mcp": "node servers/mcp/dist/bin.js",
"prepare": "node scripts/prepare.mjs"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^24.2.1",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"fast-check": "^4.2.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vitest": "^3.2.4"
}
}