4cb568c326
Use .venv/bin/python3 by default, with PYTHON_PATH as an override, and update the setup script and docs to match the new virtualenv-based workflow.
21 lines
510 B
JSON
21 lines
510 B
JSON
{
|
|
"name": "kdbx-lib",
|
|
"packageManager": "bun@1.0.0",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"example": "bun run src/example.ts",
|
|
"validate": "bun run test",
|
|
"test": "bun test",
|
|
"test:unit": "bun test",
|
|
"test:integration": "bun run src/test-integration.ts",
|
|
"setup:python": "test -x .venv/bin/python3 || python3 -m venv .venv && .venv/bin/pip install pykeepass"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"typescript": "^5.5.0",
|
|
"bun-types": "^1.1.0"
|
|
}
|
|
}
|