5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-10 07:31:09 +08:00

Fix nanoid dep for npm package

This commit is contained in:
Lea Anthony 2024-04-28 19:43:37 +10:00
parent 32ddbd8e05
commit 0f9c7b1bbf
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
4 changed files with 36 additions and 13 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,13 +1,16 @@
{
"name": "@wailsio/runtime",
"version": "3.0.0-alpha.20",
"version": "3.0.0-alpha.21",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@wailsio/runtime",
"version": "3.0.0-alpha.20",
"version": "3.0.0-alpha.21",
"license": "MIT",
"dependencies": {
"nanoid": "^5.0.7"
},
"devDependencies": {
"rimraf": "^5.0.5",
"typedoc": "^0.25.7",
@ -289,6 +292,23 @@
"node": ">=16 || 14 >=14.17"
}
},
"node_modules/nanoid": {
"version": "5.0.7",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz",
"integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"bin": {
"nanoid": "bin/nanoid.js"
},
"engines": {
"node": "^18 || >=20"
}
},
"node_modules/neo-async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",

View File

@ -1,6 +1,6 @@
{
"name": "@wailsio/runtime",
"version": "3.0.0-alpha.21",
"version": "3.0.0-alpha.22",
"description": "Wails Runtime",
"main": "src/index.js",
"types": "types/index.d.ts",
@ -27,5 +27,8 @@
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"nanoid": "^5.0.7"
}
}