-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
3,000 additions
and
2,006 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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": [ | ||
"@changesets/changelog-github", | ||
{ "repo": "hacomono-lib/json-origami" } | ||
], | ||
"changelog": ["@changesets/changelog-github", { "repo": "hacomono-lib/json-origami" }], | ||
"commit": false, | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
|
This file was deleted.
Oops, something went wrong.
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
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
672 changes: 336 additions & 336 deletions
672
.yarn/releases/yarn-4.0.2.cjs → .yarn/releases/yarn-4.1.0.cjs
Large diffs are not rendered by default.
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
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,6 +1,6 @@ | ||
{ | ||
"name": "json-origami", | ||
"version": "0.4.1", | ||
"version": "0.5.0", | ||
"description": "Transform and reshape your JSON objects with the artistry of origami.", | ||
"keywords": [ | ||
"key-value", | ||
|
@@ -15,7 +15,7 @@ | |
}, | ||
"author": "mew-ton <[email protected]>", | ||
"license": "MIT", | ||
"packageManager": "yarn@4.0.2", | ||
"packageManager": "yarn@4.1.0", | ||
"type": "module", | ||
"files": [ | ||
"dist", | ||
|
@@ -36,29 +36,34 @@ | |
"access": "public" | ||
}, | ||
"scripts": { | ||
"dev": "vitest --ui", | ||
"dev": "yarn vitest --ui", | ||
"bench": "vitest bench", | ||
"doc": "astro dev --root ./docs --open", | ||
"build": "tsup", | ||
"doc-build": "astro check --root ./docs && astro build --root ./docs", | ||
"test": "run-p test:*", | ||
"test:spec": "vitest --run --silent", | ||
"test:spec": "yarn vitest --run --silent", | ||
"test:type": "tsc --noEmit -p tsconfig.json", | ||
"vitest": "node --expose-gc node_modules/.bin/vitest", | ||
"format": "biome format --write ./src ./test", | ||
"lint": "biome check --apply ./src ./test" | ||
}, | ||
"dependencies": { | ||
"type-fest": "^4.10.2" | ||
}, | ||
"devDependencies": { | ||
"@astrojs/check": "^0.4.1", | ||
"@astrojs/starlight": "^0.17.0", | ||
"@biomejs/biome": "^1.5.3", | ||
"@changesets/changelog-github": "^0.5.0", | ||
"@changesets/cli": "^2.27.1", | ||
"@codspeed/vitest-plugin": "^3.1.0", | ||
"@types/node": "^20.11.16", | ||
"@vitest/ui": "^1.2.2", | ||
"astro": "^4.2.6", | ||
"defu": "^6.1.4", | ||
"sharp": "^0.33.2", | ||
"tsup": "^8.0.1", | ||
"type-fest": "^4.9.0", | ||
"typescript": "^5.3.3", | ||
"vitest": "^1.2.2", | ||
"yarn-run-all": "latest" | ||
|
@@ -73,6 +78,6 @@ | |
}, | ||
"volta": { | ||
"node": "20.11.0", | ||
"yarn": "4.0.2" | ||
"yarn": "4.1.0" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { createEmptyModifier, toModifier, toRaw } from './modifier' | ||
export { startsKeyWith } from './string' |
Oops, something went wrong.