ngcompass 0.1.1-beta → 0.1.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cli.js +0 -0
- package/package.json +66 -65
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://raw.githubusercontent.com/SigoudisEftimis/ngcompass_/master/assets/logo-small.png" alt="ngcompass logo" width="120" />
|
|
3
3
|
<h1>ngcompass</h1>
|
|
4
4
|
<p><strong>Static analysis for Angular — catch architecture problems, performance issues, and code quality violations before they reach production.</strong></p>
|
|
5
5
|
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,65 +1,66 @@
|
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ngcompass",
|
|
3
|
+
"version": "0.1.1-beta.0",
|
|
4
|
+
"description": "Command line interface for ngcompass",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"bin": {
|
|
7
|
+
"ngcompass": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.cjs",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
15
|
+
},
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js",
|
|
20
|
+
"require": "./dist/index.cjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"prepack": "node -e \"require('fs').copyFileSync('../../README.md','./README.md')\"",
|
|
29
|
+
"build": "tsup",
|
|
30
|
+
"build:prod": "tsup --minify",
|
|
31
|
+
"dev": "tsup --watch",
|
|
32
|
+
"test": "vitest run --passWithNoTests",
|
|
33
|
+
"test:watch": "vitest --passWithNoTests",
|
|
34
|
+
"test:ui": "vitest --ui --passWithNoTests",
|
|
35
|
+
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
37
|
+
"clean": "rimraf dist .turbo"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@ngcompass/common": "workspace:*",
|
|
41
|
+
"@ngcompass/reporters": "workspace:*",
|
|
42
|
+
"@ngcompass/rules": "workspace:*",
|
|
43
|
+
"@ngcompass/cache": "workspace:*",
|
|
44
|
+
"@ngcompass/config": "workspace:*",
|
|
45
|
+
"@ngcompass/engine": "workspace:*",
|
|
46
|
+
"@ngcompass/scanner": "workspace:*",
|
|
47
|
+
"@ngcompass/planner": "workspace:*",
|
|
48
|
+
"@ngcompass/ast": "workspace:*",
|
|
49
|
+
"commander": "^11.0.0",
|
|
50
|
+
"picocolors": "^1.1.1"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"angular",
|
|
54
|
+
"analysis",
|
|
55
|
+
"cli"
|
|
56
|
+
],
|
|
57
|
+
"author": "ngcompass",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@types/node": "^25.1.0",
|
|
64
|
+
"typescript": "catalog:"
|
|
65
|
+
}
|
|
66
|
+
}
|