Skip to content

Commit

Permalink
Chore: Bump version to 3.0.0 and update package.json configuration
Browse files Browse the repository at this point in the history
- Update version in package.json from 2.1.1 to 3.0.0.
- Specify "main" as "./core/LiteNode/LiteNode.js".
- Set "type" to "module" for ES module support.
- Define "types" as "types/litenode.d.ts" for TypeScript declarations.
- Remove the "exports" field to streamline module configuration.
LebCit committed Jul 5, 2024
1 parent a95f410 commit 7d3167f
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"name": "litenode",
"version": "2.1.1",
"version": "3.0.0",
"description": "Lightweight and modular web framework",
"types": "litenode.d.ts",
"main": "./core/LiteNode/LiteNode.js",
"type": "module",
"types": "types/litenode.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
@@ -32,11 +34,5 @@
"bugs": {
"url": "https://github.com/LebCit/litenode/issues"
},
"homepage": "https://litenode.pages.dev/",
"exports": {
".": {
"import": "./litenode.js",
"require": "./litenode.js"
}
}
"homepage": "https://litenode.pages.dev/"
}

0 comments on commit 7d3167f

Please sign in to comment.