napi-rs/examples/napi/package.json
renovate[bot] 34723ca005
chore(deps): update dependency vite-plugin-node-polyfills to ^0.22.0 (#2119)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite-plugin-node-polyfills](https://togithub.com/davidmyersdev/vite-plugin-node-polyfills) | [`^0.21.0` -> `^0.22.0`](https://renovatebot.com/diffs/npm/vite-plugin-node-polyfills/0.21.0/0.22.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-node-polyfills/0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-node-polyfills/0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-node-polyfills/0.21.0/0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-node-polyfills/0.21.0/0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>davidmyersdev/vite-plugin-node-polyfills (vite-plugin-node-polyfills)</summary>

### [`v0.22.0`](https://togithub.com/davidmyersdev/vite-plugin-node-polyfills/releases/tag/v0.22.0)

[Compare Source](https://togithub.com/davidmyersdev/vite-plugin-node-polyfills/compare/v0.21.0...v0.22.0)

-   Stop defining globals when they are disabled

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/napi-rs/napi-rs).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuNSIsInVwZGF0ZWRJblZlciI6IjM3LjM2My41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
2024-05-20 12:22:55 +08:00

59 lines
1.5 KiB
JSON

{
"name": "@examples/napi",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"browser": "vite",
"build": "napi-raw build --platform --js index.cjs --dts index.d.cts",
"test": "cross-env TS_NODE_PROJECT=./tsconfig.json node --es-module-specifier-resolution=node --loader ts-node/esm/transpile-only --experimental-wasi-unstable-preview1 ../../node_modules/ava/entrypoints/cli.mjs"
},
"napi": {
"binaryName": "example",
"wasm": {
"initialMemory": 16384,
"browser": {
"fs": true
}
},
"dtsHeader": "type MaybePromise<T> = T | Promise<T>",
"dtsHeaderFile": "./dts-header.d.ts"
},
"devDependencies": {
"@napi-rs/cli": "workspace:*",
"@napi-rs/triples": "workspace:*",
"@napi-rs/wasm-runtime": "workspace:*",
"@types/lodash": "^4.14.202",
"@vitest/browser": "^1.2.2",
"@vitest/ui": "^1.2.2",
"ava": "^6.1.1",
"buffer": "^6.0.3",
"cross-env": "7.0.3",
"electron": "^30.0.0",
"lodash": "^4.17.21",
"rxjs": "^7.8.1",
"sinon": "^18.0.0",
"vite": "^5.0.12",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^1.2.2",
"webdriverio": "^8.29.3"
},
"ava": {
"extensions": {
"ts": "module",
"cts": "commonjs",
"cjs": true
},
"files": [
"__tests__/**/*.spec.{ts,cts,js,cjs,mjs}"
],
"cache": false,
"timeout": "10m"
},
"dependencies": {
"@emnapi/core": "^1.1.1"
}
}