43b56b2818
- Upgrade the Native SDK core and CLI compiler dependency to scriptc 0.0.35. - Refresh npm/pnpm locks and generated service-surface calibration metadata. - Synchronize compiler references across tooling, tests, and documentation.
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@native-sdk/core",
|
|
"version": "0.9.5",
|
|
"description": "The TypeScript authoring tier: the app-core subset, its checker and contract frontend, the exact-pinned core compiler dependency, and the SDK module cores import",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/vercel-labs/native.git",
|
|
"directory": "packages/core"
|
|
},
|
|
"homepage": "https://native-sdk.dev",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"types": "./sdk/core.ts",
|
|
"files": [
|
|
"sdk",
|
|
"compile-surface"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./sdk/core.ts",
|
|
"default": "./sdk/core.ts"
|
|
},
|
|
"./text": {
|
|
"types": "./sdk/text.ts",
|
|
"default": "./sdk/text.ts"
|
|
},
|
|
"./events": {
|
|
"types": "./sdk/events.ts",
|
|
"default": "./sdk/events.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "node --test \"test/*.test.ts\"",
|
|
"build:declarations": "node scripts/gen_declarations.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript/old": "npm:typescript@6.0.3"
|
|
},
|
|
"dependencies": {
|
|
"scriptc": "0.0.35"
|
|
}
|
|
}
|