-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f3fc140
commit cf1facc
Showing
3 changed files
with
66 additions
and
65 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,62 @@ | ||
{ | ||
"name": "@kevintyj/prlint", | ||
"type": "module", | ||
"version": "0.0.1", | ||
"private": false, | ||
"author": "Kevin Taeyoon Jin <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"homepage": "https://github.com/kevintyj/prlint#readme", | ||
"repository": "github:kevintyj/prlint", | ||
"bugs": { | ||
"url": "https://github.com/kevintyj/prlint/issues" | ||
}, | ||
"keywords": [ | ||
"changesets", | ||
"conventional", | ||
"github" | ||
], | ||
"publishConfig": { | ||
"provenance": true | ||
}, | ||
"exports": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs", | ||
"default": "./dist/index.js" | ||
}, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"watch": "tsup --watch", | ||
"build": "tsup", | ||
"test": "vitest", | ||
"lint:es": "eslint .", | ||
"clean": "git clean -fdX", | ||
"ci": "pnpm run lint:es && pnpm run build", | ||
"release": "pnpm run ci && changeset publish" | ||
}, | ||
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@actions/github": "^6.0.0", | ||
"@commitlint/config-conventional": "^18.1.0", | ||
"@commitlint/lint": "^18.1.0", | ||
"@commitlint/load": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.1.0", | ||
"@changesets/changelog-github": "^0.4.8", | ||
"@changesets/cli": "^2.26.2", | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/types": "^18.1.0", | ||
"@types/node": "^20.9.0", | ||
"eslint": "^8.54.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^15.1.0", | ||
"tsup": "^7.2.0", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
}, | ||
"lint-staged": { | ||
"*": "eslint --fix" | ||
} | ||
"name": "@kevintyj/prlint", | ||
"type": "module", | ||
"version": "0.1.0", | ||
"private": false, | ||
"author": "Kevin Taeyoon Jin <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"homepage": "https://github.com/kevintyj/prlint#readme", | ||
"repository": "github:kevintyj/prlint", | ||
"bugs": { | ||
"url": "https://github.com/kevintyj/prlint/issues" | ||
}, | ||
"keywords": [ | ||
"changesets", | ||
"conventional", | ||
"github" | ||
], | ||
"publishConfig": { | ||
"provenance": true | ||
}, | ||
"exports": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs", | ||
"default": "./dist/index.js" | ||
}, | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"watch": "tsup --watch", | ||
"build": "tsup", | ||
"test": "vitest", | ||
"lint:es": "eslint .", | ||
"clean": "git clean -fdX", | ||
"ci": "pnpm run lint:es && pnpm run build", | ||
"release": "pnpm run ci && changeset publish" | ||
}, | ||
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@actions/github": "^6.0.0", | ||
"@commitlint/config-conventional": "^18.1.0", | ||
"@commitlint/lint": "^18.1.0", | ||
"@commitlint/load": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.1.0", | ||
"@changesets/changelog-github": "^0.4.8", | ||
"@changesets/cli": "^2.26.2", | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/types": "^18.1.0", | ||
"@types/node": "^20.9.0", | ||
"eslint": "^8.54.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^15.1.0", | ||
"tsup": "^7.2.0", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
}, | ||
"lint-staged": { | ||
"*": "eslint --fix" | ||
} | ||
} |