🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

ngcompass

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngcompass - npm Package Compare versions

Comparing version
0.1.3-beta
to
0.1.4-beta
+63
-64
package.json
{
"name": "ngcompass",
"version": "0.1.3-beta",
"description": "Command line interface for ngcompass",
"sideEffects": false,
"bin": {
"ngcompass": "./dist/cli.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"prepack": "node -e \"require('fs').copyFileSync('../../README.md','./README.md')\"",
"build": "tsup",
"build:prod": "tsup --minify",
"dev": "tsup --watch",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest --passWithNoTests",
"test:ui": "vitest --ui --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist .turbo"
},
"dependencies": {
"@ngcompass/common": "workspace:*",
"@ngcompass/reporters": "workspace:*",
"@ngcompass/rules": "workspace:*",
"@ngcompass/cache": "workspace:*",
"@ngcompass/config": "workspace:*",
"@ngcompass/engine": "workspace:*",
"@ngcompass/scanner": "workspace:*",
"@ngcompass/planner": "workspace:*",
"@ngcompass/ast": "workspace:*",
"commander": "^11.0.0",
"picocolors": "^1.1.1"
},
"keywords": [
"angular",
"analysis",
"cli"
],
"author": "ngcompass",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.1.0",
"typescript": "catalog:"
"name": "ngcompass",
"version": "0.1.4-beta",
"description": "Command line interface for ngcompass",
"sideEffects": false,
"bin": {
"ngcompass": "./dist/cli.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"commander": "^11.0.0",
"picocolors": "^1.1.1",
"@ngcompass/common": "0.1.4-beta",
"@ngcompass/rules": "0.1.4-beta",
"@ngcompass/config": "0.1.4-beta",
"@ngcompass/reporters": "0.1.4-beta",
"@ngcompass/cache": "0.1.4-beta",
"@ngcompass/engine": "0.1.4-beta",
"@ngcompass/planner": "0.1.4-beta",
"@ngcompass/scanner": "0.1.4-beta",
"@ngcompass/ast": "0.1.4-beta"
},
"keywords": [
"angular",
"analysis",
"cli"
],
"author": "ngcompass",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.1.0",
"typescript": "5.9.3"
},
"scripts": {
"build": "tsup",
"build:prod": "tsup --minify",
"dev": "tsup --watch",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest --passWithNoTests",
"test:ui": "vitest --ui --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist .turbo"
}
}