-
-
Notifications
You must be signed in to change notification settings - Fork 12
refactor: convert to npm workspaces monorepo #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9cadbab
refactor: convert to npm workspaces monorepo structure
akabekobeko 405f2c3
chore: add .claude/settings.local.json to .gitignore
akabekobeko b296315
chore: typescript のバージョン指定をもとのハットに戻した
akabekobeko a11791d
refactor: deps 整理
akabekobeko d60b9ca
refactor: 特別な deps 管理の必要なパッケージにコメント付きでバージョン固定を反映
akabekobeko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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,98 +1,23 @@ | ||
| { | ||
| "name": "@vivliostyle/vfm", | ||
| "name": "@vivliostyle/vfm-root", | ||
| "private": true, | ||
| "description": "Custom Markdown syntax specialized in book authoring.", | ||
| "version": "2.5.0", | ||
| "author": "Vivliostyle Foundation", | ||
| "license": "Apache-2.0", | ||
| "engines": { | ||
| "node": ">= 20" | ||
| }, | ||
| "volta": { | ||
| "node": "20.19.5" | ||
| }, | ||
| "type": "module", | ||
| "main": "lib/index.js", | ||
| "bin": { | ||
| "vfm": "lib/cli.js" | ||
| }, | ||
| "keywords": [ | ||
| "markdown", | ||
| "vfm", | ||
| "vivliostyle" | ||
| ], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/vivliostyle/vfm.git" | ||
| }, | ||
| "homepage": "https://github.com/vivliostyle/vfm", | ||
| "bugs": { | ||
| "url": "https://github.com/vivliostyle/vfm/issues" | ||
| }, | ||
| "files": [ | ||
| "lib" | ||
| "workspaces": [ | ||
| "packages/*" | ||
| ], | ||
| "publishConfig": { | ||
| "access": "public" | ||
| }, | ||
| "types": "lib/index.d.ts", | ||
| "scripts": { | ||
| "build": "shx rm -rf lib && tsc && shx chmod +x lib/cli.js", | ||
| "dev": "tsc -w", | ||
| "prepare": "npm run build", | ||
| "test": "vitest" | ||
| }, | ||
| "dependencies": { | ||
| "@types/hast": "^2.0.0", | ||
| "@types/mdast": "^3.0.0", | ||
| "debug": "^4.4.3", | ||
| "doctype": "^3.0.1", | ||
| "github-slugger": "^2.0.0", | ||
| "hast-util-find-and-replace": "^3.2.1", | ||
| "hast-util-is-element": "^2.1.3", | ||
| "hast-util-select": "^5.0.5", | ||
| "hastscript": "^7.2.0", | ||
| "js-yaml": "^4.1.0", | ||
| "md-attr-parser": "^1.3.0", | ||
| "mdast-util-find-and-replace": "^2.2.2", | ||
| "mdast-util-to-hast": "^11.3.0", | ||
| "mdast-util-to-string": "^3.2.0", | ||
| "meow": "^13.2.0", | ||
| "refractor": "^3.6.0", | ||
| "rehype-format": "^3.1.0", | ||
| "rehype-raw": "^5.1.0", | ||
| "rehype-stringify": "^8.0.0", | ||
| "remark-attr": "^0.11.1", | ||
| "remark-breaks": "^1.0.5", | ||
| "remark-footnotes": "^2.0.0", | ||
| "remark-frontmatter": "^2.0.0", | ||
| "remark-parse": "^8.0.2", | ||
| "remark-rehype": "^8.1.0", | ||
| "remark-shortcodes": "^0.3.1", | ||
| "to-vfile": "^6.1.0", | ||
| "unified": "^9.2.0", | ||
| "unist-builder": "^3.0.1", | ||
| "unist-util-filter": "^4.0.1", | ||
| "unist-util-find-after": "^4.0.1", | ||
| "unist-util-inspect": "^7.0.2", | ||
| "unist-util-remove": "^3.1.1", | ||
| "unist-util-select": "^4.0.3", | ||
| "unist-util-visit": "^4.1.2", | ||
| "unist-util-visit-parents": "^5.1.3" | ||
| "build": "npm run build -w @vivliostyle/vfm", | ||
| "dev": "npm run dev -w @vivliostyle/vfm", | ||
| "test": "npm run test -w @vivliostyle/vfm" | ||
| }, | ||
| "devDependencies": { | ||
| "@release-it/conventional-changelog": "^10.0.1", | ||
| "@types/common-tags": "^1.8.4", | ||
| "@types/debug": "^4.1.12", | ||
| "@types/js-yaml": "^4.0.9", | ||
| "@types/node": "^18.7.21", | ||
| "@types/refractor": "^3.0.2", | ||
| "@typescript-eslint/eslint-plugin": "^5.38.0", | ||
| "@typescript-eslint/parser": "^5.38.0", | ||
| "common-tags": "^1.8.2", | ||
| "eslint": "^8.24.0", | ||
| "prettier": "^2.7.1", | ||
| "shx": "^0.3.4", | ||
| "typescript": "^4.8.3", | ||
| "vitest": "^3.0.8" | ||
| "@types/unist": "2.0.3", | ||
| "@types/mdast": "3.0.10" | ||
| } | ||
| } | ||
This file contains hidden or 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,94 @@ | ||
| { | ||
| "name": "@vivliostyle/vfm", | ||
| "description": "Custom Markdown syntax specialized in book authoring.", | ||
| "version": "2.5.0", | ||
| "author": "Vivliostyle Foundation", | ||
| "license": "Apache-2.0", | ||
| "engines": { | ||
| "node": ">= 20" | ||
| }, | ||
| "type": "module", | ||
| "main": "lib/index.js", | ||
| "bin": { | ||
| "vfm": "lib/cli.js" | ||
| }, | ||
| "keywords": [ | ||
| "markdown", | ||
| "vfm", | ||
| "vivliostyle" | ||
| ], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/vivliostyle/vfm.git" | ||
| }, | ||
| "homepage": "https://github.com/vivliostyle/vfm", | ||
| "bugs": { | ||
| "url": "https://github.com/vivliostyle/vfm/issues" | ||
| }, | ||
| "files": [ | ||
| "lib" | ||
| ], | ||
| "publishConfig": { | ||
| "access": "public" | ||
| }, | ||
| "types": "lib/index.d.ts", | ||
| "scripts": { | ||
| "build": "shx rm -rf lib && tsc && shx chmod +x lib/cli.js", | ||
| "dev": "tsc -w", | ||
| "test": "vitest" | ||
| }, | ||
| "dependencies": { | ||
| "@types/hast": "^2.0.0", | ||
| "@types/mdast": "^3.0.0", | ||
| "debug": "^4.4.3", | ||
| "doctype": "^3.0.1", | ||
| "github-slugger": "^2.0.0", | ||
| "hast-util-find-and-replace": "^3.2.1", | ||
| "hast-util-is-element": "^2.1.3", | ||
| "hast-util-select": "^5.0.5", | ||
| "hastscript": "^7.2.0", | ||
| "js-yaml": "^4.1.0", | ||
| "md-attr-parser": "^1.3.0", | ||
| "mdast-util-find-and-replace": "^2.2.2", | ||
| "mdast-util-to-hast": "^11.3.0", | ||
| "mdast-util-to-string": "^3.2.0", | ||
| "meow": "^13.2.0", | ||
| "refractor": "^3.6.0", | ||
| "rehype-format": "^3.1.0", | ||
| "rehype-raw": "^5.1.0", | ||
| "rehype-stringify": "^8.0.0", | ||
| "remark-attr": "^0.11.1", | ||
| "remark-breaks": "^1.0.5", | ||
| "remark-footnotes": "^2.0.0", | ||
| "remark-frontmatter": "^2.0.0", | ||
| "remark-parse": "^8.0.2", | ||
| "remark-rehype": "^8.1.0", | ||
| "remark-shortcodes": "^0.3.1", | ||
| "to-vfile": "^6.1.0", | ||
| "unified": "^9.2.0", | ||
| "unist-builder": "^3.0.1", | ||
| "unist-util-filter": "^4.0.1", | ||
| "unist-util-find-after": "^4.0.1", | ||
| "unist-util-inspect": "^7.0.2", | ||
| "unist-util-remove": "^3.1.1", | ||
| "unist-util-select": "^4.0.3", | ||
| "unist-util-visit": "^4.1.2", | ||
| "unist-util-visit-parents": "^5.1.3" | ||
| }, | ||
| "devDependencies": { | ||
| "@release-it/conventional-changelog": "^10.0.1", | ||
| "@types/common-tags": "^1.8.4", | ||
| "@types/debug": "^4.1.12", | ||
| "@types/js-yaml": "^4.0.9", | ||
| "@types/node": "^18.7.21", | ||
| "@types/refractor": "^3.0.2", | ||
| "@typescript-eslint/eslint-plugin": "^5.38.0", | ||
| "@typescript-eslint/parser": "^5.38.0", | ||
| "common-tags": "^1.8.2", | ||
| "eslint": "^8.24.0", | ||
| "prettier": "^2.7.1", | ||
| "shx": "^0.3.4", | ||
| "typescript": "^4.8.3", | ||
| "vitest": "^3.0.8" | ||
| } | ||
| } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.