-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.42 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
81
82
83
84
85
{
"name": "strata-cli",
"version": "0.1.4",
"description": "多言語(Go / TypeScript / JavaScript / Python / Elixir / Protocol Buffers / GraphQL)・マイクロサービス対応の依存関係可視化・コールグラフ探索・アーキテクチャ検査ツール。gRPC / REST / GraphQL をまたいで関数レベルで処理を追跡し、循環依存とレイヤー違反を CI で検査する",
"type": "module",
"bin": {
"strata": "./src/cli.ts"
},
"engines": {
"node": ">=22.18"
},
"os": [
"darwin",
"linux",
"win32"
],
"scripts": {
"demo": "node src/cli.ts serve examples/demo",
"check": "npm run typecheck && npm run lint && npm test && npm run docs:check",
"test": "node test/cli.smoke.mjs && node test/viewer.smoke.mjs && node test/source-panel.smoke.mjs && node test/server.smoke.mjs",
"typecheck": "tsc --noEmit",
"lint": "node scripts/lint.mjs",
"docs:check": "node scripts/check-docs.mjs",
"audit:viewer": "node scripts/audit-viewer.mjs",
"build:binary": "node scripts/build-binary.mjs --tar",
"build:app": "node scripts/build-binary.mjs && node scripts/build-app.mjs --dmg"
},
"keywords": [
"dependency-graph",
"call-graph",
"code-analysis",
"static-analysis",
"monorepo",
"microservices",
"architecture",
"visualization",
"grpc",
"protobuf",
"graphql",
"rest-api",
"golang",
"typescript",
"python",
"elixir",
"developer-tools",
"cli"
],
"author": {
"name": "makoto-developer",
"url": "https://github.com/makoto-developer"
},
"maintainers": [
{
"name": "makoto-developer",
"url": "https://github.com/makoto-developer"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/makoto-developer/strata.git"
},
"homepage": "https://makoto-developer.github.io/strata/",
"bugs": {
"url": "https://github.com/makoto-developer/strata/issues"
},
"files": [
"src",
"web",
"docs",
"examples",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md",
"SUPPORT.md",
"CODE_OF_CONDUCT.md"
],
"//": "private:true は npm への誤公開を防ぐため(npm の strata / strata-cli は他者が取得済み)。配布は GitHub Releases + Homebrew / mise / asdf",
"private": true,
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/node": "^26.1.1",
"typescript": "^5.9.3"
}
}