first commit

This commit is contained in:
2026-07-21 14:54:36 +10:00
commit e79c793b9c
134 changed files with 14427 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"name": "@native-vue-router/core",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"files": ["dist"],
"sideEffects": ["./dist/style.css"],
"scripts": { "build": "vite build --config vite.config.ts && vue-tsc -p tsconfig.json --emitDeclarationOnly" },
"exports": {
".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" },
"./style.css": "./dist/style.css"
},
"peerDependencies": {
"vue": "^3.5.0",
"vue-router": "^5.0.0"
}
}