New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

exhaustive

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exhaustive - npm Package Compare versions

Comparing version

to
0.1.0

{
"name": "exhaustive",
"version": "0.0.0",
"description": "Simple exhaustive case matching for your project",
"version": "0.1.0",
"description": "Exhaustiveness checking in TypeScript",
"author": "Luke Morales <lukemorales@live.com>",

@@ -20,19 +20,11 @@ "license": "MIT",

],
"scripts": {
"build": "run-p build:*",
"build:tsup": "tsup --dts --minify",
"changeset": "changeset",
"clean": "rimraf dist",
"dev": "pnpm run test:coverage --ui",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts",
"lint:eslint:fix": "pnpm run lint:eslint --fix",
"lint:prettier": "prettier --check \"src/**/*.ts\"",
"lint:prettier:fix": "pnpm run lint:prettier --write",
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"test": "vitest --passWithNoTests",
"test:ci": "pnpm run test:coverage --run",
"test:coverage": "pnpm run test --coverage",
"prerelease": "run-p build test:ci",
"release": "changeset publish"
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},

@@ -49,2 +41,4 @@ "keywords": [

"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",

@@ -70,3 +64,19 @@ "@typescript-eslint/parser": "^5.49.0",

"vitest": "^0.27.3"
},
"scripts": {
"build": "run-p build:*",
"build:tsup": "tsup --dts --minify",
"changeset": "changeset",
"clean": "rimraf dist",
"dev": "pnpm run test:coverage --ui",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts",
"lint:eslint:fix": "pnpm run lint:eslint --fix",
"lint:tsc": "tsc --project tsconfig.json --noEmit",
"test": "vitest --passWithNoTests",
"test:ci": "pnpm run test:coverage --run",
"test:coverage": "pnpm run test --coverage",
"prerelease": "run-p build test:ci",
"release": "changeset publish"
}
}
}