@phyng/typeschema
Version:
A database schema definition library using TypeScript or JSON
56 lines • 1.66 kB
JSON
{
"name": "@phyng/typeschema",
"version": "0.0.2",
"description": "A database schema definition library using TypeScript or JSON",
"type": "module",
"author": "phyng <phyngk@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/phyng/typeschema#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/phyng/typeschema.git"
},
"bugs": {
"url": "https://github.com/phyng/typeschema/issues"
},
"keywords": [
"typeschema"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.14.0",
"@types/wicg-file-system-access": "^2023.10.6",
"@vitest/coverage-v8": "^3.1.1",
"rollup": "^4.39.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-esbuild": "^6.2.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.2",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"doc": "pnpm typedoc src/index.ts --sourceLinkTemplate 'https://github.com/phyng/typeschema/blob/master/{path}#L{line}'",
"publish_dryrun": "pnpm build && pnpm publish --dry-run --no-git-checks",
"test": "vitest",
"test:coverage": "vitest run --coverage"
}
}