mirror of
https://github.com/zhigang1992/pocketbase-typegen.git
synced 2026-01-12 22:49:39 +08:00
Bumps [esbuild-node-externals](https://github.com/pradel/esbuild-node-externals) from 1.5.0 to 1.6.0. - [Release notes](https://github.com/pradel/esbuild-node-externals/releases) - [Commits](https://github.com/pradel/esbuild-node-externals/compare/v1.5.0...v1.6.0) --- updated-dependencies: - dependency-name: esbuild-node-externals dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "pocketbase-typegen",
|
|
"version": "1.1.4",
|
|
"description": "Generate pocketbase record types from your database",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"pocketbase-typegen": "dist/index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/patmood/pocketbase-typegen.git"
|
|
},
|
|
"keywords": [
|
|
"pocketbase",
|
|
"typescript",
|
|
"typegen",
|
|
"type generation"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "jest --coverage",
|
|
"test:watch": "jest --watch",
|
|
"test:update": "jest -u",
|
|
"build": "rm -rf dist && node build.js",
|
|
"prepublishOnly": "tsc && npm run test && npm run build",
|
|
"typecheck": "tsc",
|
|
"lint": "eslint src test",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"prettier": "prettier src test --check",
|
|
"prettier:fix": "npm run prettier -- --write",
|
|
"format": "npm run prettier:fix && npm run lint:fix"
|
|
},
|
|
"author": "@patmood",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"commander": "^9.4.1",
|
|
"cross-fetch": "^3.1.5",
|
|
"form-data": "^4.0.0",
|
|
"sqlite": "^4.1.2",
|
|
"sqlite3": "^5.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.4.0",
|
|
"@types/node": "^18.13.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.42.1",
|
|
"esbuild": "^0.15.11",
|
|
"esbuild-node-externals": "^1.6.0",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
"jest": "^29.4.2",
|
|
"prettier": "^2.7.1",
|
|
"ts-jest": "^29.0.5",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"modulePathIgnorePatterns": [
|
|
"dist",
|
|
"test/pocketbase-types-example.ts"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "es5",
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": false
|
|
}
|
|
}
|