Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cuiyiming1998 committed Jun 21, 2023
1 parent 560bb8d commit 52eb8ec
Show file tree
Hide file tree
Showing 7 changed files with 322 additions and 738 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"extends": "@antfu"
"extends": "@antfu",
"rules": {
"no-console": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}
12 changes: 0 additions & 12 deletions build.config.ts

This file was deleted.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "pkg-name",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@7.32.0",
"packageManager": "pnpm@8.6.0",
"description": "",
"author": "cuiyiming1998 <1269567664@qq.com>",
"author": "cuiyiming <atlasyoungcym@163.com>",
"license": "MIT",
"homepage": "https://github.com/cuiyiming1998/pkg-name#readme",
"repository": {
Expand All @@ -18,26 +18,28 @@
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
"import": "./dist/index.js"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
"dist",
"src/*",
"*.d.ts"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"build": "tsup && esno scripts/postbuild.ts",
"lint": "eslint .",
"play": "npm -C playground run dev",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno packages/demo/src/index.ts",
Expand All @@ -48,18 +50,16 @@
"@antfu/eslint-config": "^0.35.3",
"@antfu/ni": "^0.20.0",
"@antfu/utils": "^0.7.2",
"@rollup/plugin-typescript": "^8.5.0",
"@types/node": "^18.15.11",
"bumpp": "^9.1.0",
"eslint": "^8.38.0",
"esno": "^0.16.3",
"fast-glob": "^3.2.12",
"lint-staged": "^13.2.1",
"pnpm": "^7.32.0",
"rimraf": "^4.4.1",
"rollup": "^3.20.2",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"unbuild": "^1.2.0",
"vite": "^4.2.1",
"vitest": "^0.28.5"
},
Expand Down
Loading

0 comments on commit 52eb8ec

Please sign in to comment.