feat: base

This commit is contained in:
GogaCoder
2025-01-03 00:05:10 +07:00
commit 493ebacfcb
1224 changed files with 1648045 additions and 0 deletions

41
frontend/node_modules/@wailsio/runtime/package.json generated vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "@wailsio/runtime",
"type": "module",
"version": "3.0.0-alpha.36",
"description": "Wails Runtime",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./src/index.js",
"import": "./src/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/wailsapp/wails.git"
},
"scripts": {
"prebuild:types": "rimraf ./types",
"build:types": "npx -p typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"postbuild:types": "wails3 task generate:events",
"build:docs": "npx typedoc ./src/index.js",
"build:docs:md": "npx typedoc --plugin typedoc-plugin-markdown --namedAnchors true --hideBreadcrumbs true --out ../../../../../../old_mkdocs/docs/en/api/js ./src/index.js"
},
"author": "The Wails Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/wailsapp/wails/issues"
},
"homepage": "https://wails.io",
"private": false,
"devDependencies": {
"rimraf": "^5.0.5",
"typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"nanoid": "^5.0.7"
}
}