Skip to content

Commit

Permalink
chore: enrich package.json (#9)
Browse files Browse the repository at this point in the history
chore: disable json biome formatter
  • Loading branch information
Timeless0911 authored Jun 3, 2024
1 parent a42eed3 commit 36880a0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
5 changes: 5 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
"quoteStyle": "single"
}
},
"json": {
"formatter": {
"enabled": false
}
},
"linter": {
"enabled": true,
"rules": {
Expand Down
27 changes: 26 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
{
"name": "@rslib/core",
"version": "0.0.0",
"description": "The Rspack-based library build tool.",
"homepage": "https://rslib.dev",
"bugs": {
"url": "https://github.com/web-infra-dev/rslib/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rslib",
"directory": "packages/core"
},
"license": "MIT",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"bin": {
"rslib": "./bin/rslib.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "modern build",
"dev": "modern build --watch"
Expand All @@ -24,5 +41,13 @@
"devDependencies": {
"@rslib/tsconfig": "workspace:*",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}

0 comments on commit 36880a0

Please sign in to comment.