mirror of https://github.com/buster-so/buster.git
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "@buster/secrets",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:dry-run": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "tsc --watch",
|
|
"dev:fast": "tsc --watch",
|
|
"lint": "biome check --write",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
|
|
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts --passWithNoTests",
|
|
"test:watch": "vitest watch"
|
|
},
|
|
"dependencies": {
|
|
"@buster/typescript-config": "workspace:*",
|
|
"@infisical/sdk": "^4.0.4",
|
|
"dotenv": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@buster/vitest-config": "workspace:*",
|
|
"@types/node": "^20.19.4",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.6.3",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|