Skip to content

Commit

Permalink
build!: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dragon-fish committed Jul 30, 2024
1 parent a759ac9 commit ae7ffe1
Show file tree
Hide file tree
Showing 5 changed files with 1,845 additions and 1,774 deletions.
52 changes: 31 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,28 @@
"name": "wiki-saikou",
"version": "3.3.1",
"description": "The library provides the out of box accessing to MediaWiki API in both browsers & Node.js, and the syntax is very similar to vanilla `new mw.Api()`. TypeScript definition included~",
"main": "./lib/index.js",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"browser": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
}
},
"files": [
"dist",
"lib"
],
"scripts": {
"test": "mocha test/**/*.spec.ts",
"clean": "rimraf dist lib",
"build": "npm run clean && tsc --module commonjs && vite build",
"build": "npm run clean && vite build && pkgroll",
"build:browser": "vite build",
"build:node": "pkgroll --dist lib --sourcemap",
"prepublish": "npm run build"
},
"publishConfig": {
Expand Down Expand Up @@ -43,26 +53,26 @@
},
"homepage": "https://github.com/moegirlwiki/wiki-saikou#readme",
"dependencies": {
"@vue/reactivity": "^3.3.4",
"fexios": "^1.5.0",
"tslib": "^2.6.2"
"@vue/reactivity": "^3.4.34",
"fexios": "^1.6.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.15",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.3.1",
"esbuild-register": "^3.4.2",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.13",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"dotenv": "^16.4.5",
"esbuild-register": "^3.6.0",
"mocha": "^10.7.0",
"pkgroll": "^2.4.2",
"rimraf": "^6.0.1",
"ts-mocha": "^10.0.0",
"tsup": "^7.2.0",
"tsx": "^3.12.9",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3"
"tsx": "^4.16.2",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.4"
}
}
Loading

0 comments on commit ae7ffe1

Please sign in to comment.