ngcompass 0.1.3-beta → 0.1.5-beta

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/LICENSE +5 -17
  2. package/dist/cli.js +0 -0
  3. package/package.json +65 -66
package/LICENSE CHANGED
@@ -1,21 +1,9 @@
1
- MIT License
1
+ Copyright (c) 2026 Sigkoudis Efthymios. All rights reserved.
2
2
 
3
- Copyright (c) 2026 ngcompass
3
+ This software is provided free of charge for use in evaluating, testing, and analyzing Angular projects.
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
5
+ You may download, install, and execute this software for both personal and commercial use.
11
6
 
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
7
+ You may not modify, reverse engineer, decompile, redistribute, repackage, sell, or sublicense this software, or any portion thereof, without explicit written permission from the author.
14
8
 
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,66 +1,65 @@
1
- {
2
- "name": "ngcompass",
3
- "version": "0.1.3-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
- "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
- }
1
+ {
2
+ "name": "ngcompass",
3
+ "version": "0.1.5-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.5-beta",
31
+ "@ngcompass/reporters": "0.1.5-beta",
32
+ "@ngcompass/cache": "0.1.5-beta",
33
+ "@ngcompass/rules": "0.1.5-beta",
34
+ "@ngcompass/config": "0.1.5-beta",
35
+ "@ngcompass/scanner": "0.1.5-beta",
36
+ "@ngcompass/ast": "0.1.5-beta",
37
+ "@ngcompass/planner": "0.1.5-beta",
38
+ "@ngcompass/engine": "0.1.5-beta"
39
+ },
40
+ "keywords": [
41
+ "angular",
42
+ "analysis",
43
+ "cli"
44
+ ],
45
+ "author": "ngcompass",
46
+ "license": "UNLICENSED",
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
+ }