-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: packlint로 package.json들을 정렬합니다 (#46)
- Loading branch information
Showing
4 changed files
with
253 additions
and
40 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
"name": "docs", | ||
"version": "0.1.0", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"lint": "next lint" | ||
"dev": "next dev", | ||
"lint": "next lint", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"next": "14.1.4", | ||
|
@@ -25,6 +26,5 @@ | |
"postcss": "^8", | ||
"tailwindcss": "^3.3.0", | ||
"typescript": "^5" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
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,18 +1,21 @@ | ||
{ | ||
"name": "es-hangul", | ||
"workspaces": [ | ||
".", | ||
"docs" | ||
], | ||
"version": "1.0.9", | ||
"keywords": [ | ||
"한글", | ||
"한국어", | ||
"텍스트 처리", | ||
"초성 검색", | ||
"조사 처리", | ||
"문자 분해", | ||
"한국어 처리", | ||
"hangul", | ||
"korean", | ||
"text processing", | ||
"korean-language" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "tsup", | ||
"typecheck": "tsc --noEmit", | ||
"test": "vitest", | ||
"changeset:publish": "changeset publish", | ||
"changeset:version": "changeset version" | ||
}, | ||
"packageManager": "[email protected]", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
|
@@ -22,6 +25,21 @@ | |
"./package.json": "./package.json" | ||
}, | ||
"main": "./dist/index.js", | ||
"files": [ | ||
"dist/*" | ||
], | ||
"workspaces": [ | ||
".", | ||
"docs" | ||
], | ||
"scripts": { | ||
"build": "tsup", | ||
"changeset:publish": "changeset publish", | ||
"changeset:version": "changeset version", | ||
"packlint": "packlint sort -R", | ||
"test": "vitest", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"devDependencies": { | ||
"@changesets/changelog-github": "^0.5.0", | ||
"@changesets/cli": "^2.27.1", | ||
|
@@ -31,16 +49,16 @@ | |
"@typescript-eslint/parser": "^5.39.0", | ||
"eslint": "^7", | ||
"eslint-config-prettier": "^8.5.0", | ||
"packlint": "^0.2.4", | ||
"prettier": "^3.2.5", | ||
"tsup": "^8.0.2", | ||
"typescript": "^5.4.3", | ||
"vitest": "^1.4.0" | ||
}, | ||
"files": [ | ||
"dist/*" | ||
], | ||
"publishConfig": { | ||
"access": "public", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.js", | ||
|
@@ -49,23 +67,7 @@ | |
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"import": "./dist/index.mjs", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"keywords": [ | ||
"한글", | ||
"한국어", | ||
"텍스트 처리", | ||
"초성 검색", | ||
"조사 처리", | ||
"문자 분해", | ||
"한국어 처리", | ||
"hangul", | ||
"korean", | ||
"text processing", | ||
"korean-language" | ||
], | ||
"packageManager": "[email protected]" | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.mjs" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default { | ||
files: ['./docs/package.json', './package.json'], | ||
}; |
Oops, something went wrong.