5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-13 23:49:35 +08:00

[V3 Runtime] Ensure JS package has parity with various node versions (#3821)

node runtime parity
This commit is contained in:
Atterpac 2024-10-13 01:06:06 -06:00 committed by GitHub
parent fc6f6bde1d
commit 94e8f8b8d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,18 @@
{ {
"name": "@wailsio/runtime", "name": "@wailsio/runtime",
"version": "3.0.0-alpha.27", "type": "module",
"version": "3.0.0-alpha.28",
"description": "Wails Runtime", "description": "Wails Runtime",
"main": "src/index.js", "exports": {
"types": "types/index.d.ts", ".": {
"types": "./types/index.d.ts",
"require": "./src/index.js",
"import": "./src/index.js"
}
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/wailsapp/wails.git" "url": "git+https://github.com/wailsapp/wails.git"
}, },
"scripts": { "scripts": {
"prebuild:types": "rimraf ./types", "prebuild:types": "rimraf ./types",