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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +0 -0
  3. package/package.json +66 -65
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <img src="./assets/logo-small.png" alt="ngcompass logo" width="120" />
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
- "name": "ngcompass",
3
- "version": "0.1.1-beta",
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
- "dependencies": {
28
- "commander": "^11.0.0",
29
- "picocolors": "^1.1.1",
30
- "@ngcompass/common": "0.1.1-beta",
31
- "@ngcompass/rules": "0.1.1-beta",
32
- "@ngcompass/reporters": "0.1.1-beta",
33
- "@ngcompass/scanner": "0.1.1-beta",
34
- "@ngcompass/cache": "0.1.1-beta",
35
- "@ngcompass/planner": "0.1.1-beta",
36
- "@ngcompass/config": "0.1.1-beta",
37
- "@ngcompass/engine": "0.1.1-beta",
38
- "@ngcompass/ast": "0.1.1-beta"
39
- },
40
- "keywords": [
41
- "angular",
42
- "analysis",
43
- "cli"
44
- ],
45
- "author": "ngcompass",
46
- "license": "MIT",
47
- "publishConfig": {
48
- "access": "public"
49
- },
50
- "devDependencies": {
51
- "@types/node": "^25.1.0",
52
- "typescript": "5.9.3"
53
- },
54
- "scripts": {
55
- "build": "tsup",
56
- "build:prod": "tsup --minify",
57
- "dev": "tsup --watch",
58
- "test": "vitest run --passWithNoTests",
59
- "test:watch": "vitest --passWithNoTests",
60
- "test:ui": "vitest --ui --passWithNoTests",
61
- "test:coverage": "vitest run --coverage --passWithNoTests",
62
- "typecheck": "tsc --noEmit",
63
- "clean": "rimraf dist .turbo"
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
+ }