Skip to content

Commit

Permalink
chore(deps): upgrade, sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Aug 12, 2024
1 parent bea61fc commit 1853021
Show file tree
Hide file tree
Showing 10 changed files with 275 additions and 294 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.lockb binary diff=lockb
Binary file modified bun.lockb
Binary file not shown.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "nue",
"version": "0.0.0",
"private": true,
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
Expand All @@ -11,6 +11,8 @@
"node": ">=18"
},
"jest": {
"setupFilesAfterEnv": ["jest-extended/all"]
"setupFilesAfterEnv": [
"jest-extended/all"
]
}
}
19 changes: 6 additions & 13 deletions packages/glow/package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,21 @@
{
"name": "nue-glow",
"version": "0.1.3",

"description": "Tiny, pixel-perfect Markdown syntax highlighter",
"homepage": "https://nuejs.org/blog/introducing-glow",

"license": "MIT",
"type": "module",
"main": "index.js",
"repository": {
"url": "https://github.com/nuejs/nue",
"directory": "packages/glow",
"type": "git"
},

"main": "index.js",

"license": "MIT",
"type": "module",

"devDependencies": {
"lightningcss": "^1.23"
},

"engines": {
"bun": ">= 1",
"node": ">= 18"
},
"devDependencies": {
"lightningcss": "^1.26.0"
}
}

3 changes: 1 addition & 2 deletions packages/nuejs.org/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"private": true,
"name": "nuejs.org",
"description": "The official Nue website",
"homepage": "https://nuejs.org",
"private": true,
"engines": {
"bun": ">= 1"
}
}

51 changes: 22 additions & 29 deletions packages/nuejs/package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,25 @@
{
"name": "nuejs-core",
"version": "0.4.0",

"description": "The Nue framework for building user interfaces",
"homepage": "https://nuejs.org",

"repository": {
"url": "https://github.com/nuejs/nue",
"directory": "packages/nuejs",
"type": "git"
"name": "nuejs-core",
"version": "0.4.0",
"description": "The Nue framework for building user interfaces",
"homepage": "https://nuejs.org",
"license": "MIT",
"type": "module",
"main": "index.js",
"repository": {
"url": "https://github.com/nuejs/nue",
"directory": "packages/nuejs",
"type": "git"
},

"license": "MIT",
"type": "module",

"scripts": {
"test": "cd test && bun test",
"compile": "cd test && bun compile.js"
},

"main": "index.js",

"dependencies": {
"htmlparser2": "^9.0.0"
},

"engines": {
"bun": ">= 1",
"node": ">= 18"
}
"engines": {
"bun": ">= 1",
"node": ">= 18"
},
"scripts": {
"test": "cd test && bun test",
"compile": "cd test && bun compile.js"
},
"dependencies": {
"htmlparser2": "^9.1.0"
}
}
64 changes: 32 additions & 32 deletions packages/nuekit/package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"name": "nuekit",
"version": "0.5.3",
"description": "The closer-to-standards web framework. Build sites and apps with less effort.",
"homepage": "https://nuejs.org",
"license": "MIT",
"type": "module",
"repository": {
"url": "https://github.com/nuejs/nue",
"directory": "packages/nuekit",
"type": "git"
},
"bin": {
"nue": "./src/cli.js"
},
"scripts": {
"test": "cd test && bun test"
},
"dependencies": {
"diff-dom": "^5.0.6",
"es-main": "^1.3.0",
"import-meta-resolve": "^4.0.0",
"js-yaml": "^4.1.0",
"lightningcss": "^1.24.0",
"nue-glow": "*",
"nuejs-core": "*",
"nuemark": "*"
},
"engines": {
"bun": ">= 1",
"node": ">= 18"
},
"name": "nuekit",
"version": "0.5.3",
"description": "The closer-to-standards web framework. Build sites and apps with less effort.",
"homepage": "https://nuejs.org",
"license": "MIT",
"type": "module",
"repository": {
"url": "https://github.com/nuejs/nue",
"directory": "packages/nuekit",
"type": "git"
},
"bin": {
"nue": "./src/cli.js"
},
"engines": {
"bun": ">= 1",
"node": ">= 18"
},
"scripts": {
"test": "cd test && bun test"
},
"dependencies": {
"diff-dom": "^5.1.4",
"es-main": "^1.3.0",
"import-meta-resolve": "^4.1.0",
"js-yaml": "^4.1.0",
"lightningcss": "^1.26.0",
"nue-glow": "*",
"nuejs-core": "*",
"nuemark": "*"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.7.1"
"@happy-dom/global-registrator": "^14.12.3"
}
}
6 changes: 2 additions & 4 deletions packages/nuemark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@
"license": "MIT",
"type": "module",
"main": "index.js",

"repository": {
"url": "https://github.com/nuejs/nue",
"directory": "packages/nuemark",
"type": "git"
},

"dependencies": {
"nue-glow": "*",
"js-yaml": "^4.1.0",
"marked": "^9.1.2"
"marked": "^14.0.0",
"nue-glow": "*"
}
}
Loading

0 comments on commit 1853021

Please sign in to comment.