56 lines
2.3 KiB
JSON
56 lines
2.3 KiB
JSON
{
|
|
"name": "@native-sdk/cli",
|
|
"version": "0.5.0",
|
|
"description": "The Native SDK: the complete toolkit for building native desktop applications — declarative markup, native rendering, WebView surfaces, and OS capabilities",
|
|
"type": "module",
|
|
"bin": {
|
|
"native": "bin/native.js"
|
|
},
|
|
"types": "./native-sdk.d.ts",
|
|
"files": [
|
|
"bin/native.js",
|
|
"assets",
|
|
"skill-data",
|
|
"skills",
|
|
"src",
|
|
"build",
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"app.zon",
|
|
"packages/core/src",
|
|
"packages/core/sdk",
|
|
"packages/core/rt",
|
|
"packages/core/package.json",
|
|
"packages/core/package-lock.json",
|
|
"third_party/webview2",
|
|
"native-sdk.d.ts",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"optionalDependencies": {
|
|
"@native-sdk/cli-darwin-arm64": "0.5.0",
|
|
"@native-sdk/cli-darwin-x64": "0.5.0",
|
|
"@native-sdk/cli-linux-arm64-gnu": "0.5.0",
|
|
"@native-sdk/cli-linux-arm64-musl": "0.5.0",
|
|
"@native-sdk/cli-linux-x64-gnu": "0.5.0",
|
|
"@native-sdk/cli-linux-x64-musl": "0.5.0",
|
|
"@native-sdk/cli-win32-arm64": "0.5.0",
|
|
"@native-sdk/cli-win32-x64": "0.5.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vercel-labs/native.git"
|
|
},
|
|
"homepage": "https://native-sdk.dev",
|
|
"scripts": {
|
|
"version": "npm run version:sync && git add ../../tools/native-sdk/main.zig ../../packages/core/package.json ../../packages/core/package-lock.json ../../examples/soundboard-ts/package.json ../../examples/system-monitor-ts/package.json npm/*/package.json package.json",
|
|
"version:sync": "node scripts/sync-version.js",
|
|
"version:check": "node scripts/check-version-sync.js",
|
|
"scripts:check": "node --check bin/native.js && node --check scripts/copy-native.js && node --check scripts/copy-framework.js && node --check scripts/sync-version.js && node --check scripts/check-version-sync.js && node --check scripts/check-framework-sync.js && node --check scripts/check-runtime-types.js && node scripts/copy-framework.js && node scripts/check-framework-sync.js && node scripts/check-runtime-types.js",
|
|
"build:native": "npm run version:sync && cd ../.. && zig build && node packages/native-sdk/scripts/copy-native.js",
|
|
"build:binaries": "bash scripts/build-binaries.sh",
|
|
"prepack": "node scripts/copy-framework.js"
|
|
},
|
|
"license": "Apache-2.0"
|
|
}
|