-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.32 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@rawsql-ts/ztd-cli",
"version": "0.26.0",
"description": "DB-agnostic scaffolding and DDL helpers for Zero Table Dependency projects",
"main": "dist/index.js",
"bin": {
"ztd": "dist/index.js"
},
"scripts": {
"prepack": "node -e \"const fs=require('fs');const cp=require('child_process');const npm=process.platform==='win32'?'npm.cmd':'npm';if(!fs.existsSync('dist/index.js')){process.exit(cp.spawnSync(npm,['run','build'],{stdio:'inherit'}).status??1)}\"",
"build": "pnpm --filter rawsql-ts run build && pnpm --filter @rawsql-ts/sql-grep-core run build && pnpm --filter @rawsql-ts/test-evidence-core run build && pnpm --filter @rawsql-ts/test-evidence-renderer-md run build && pnpm --filter @rawsql-ts/testkit-core run build && tsc -p tsconfig.json",
"test": "pnpm --filter @rawsql-ts/adapter-node-pg run build && vitest run --config vitest.config.ts",
"test:essential": "pnpm --filter @rawsql-ts/adapter-node-pg run build && vitest run --config vitest.config.ts tests/checkContract.cli-exit.test.ts tests/checkContract.cli.test.ts tests/checkContract.unit.test.ts tests/featureScaffold.unit.test.ts tests/featureTestsScaffold.unit.test.ts tests/gitignoreTemplate.pack.test.ts tests/init.command.test.ts tests/options.unit.test.ts tests/prReadiness.unit.test.ts tests/precommitEnforcement.unit.test.ts tests/qualityGates.unit.test.ts tests/releaseReadiness.unit.test.ts",
"test:soft": "vitest run --config vitest.config.ts tests/repoGuidance.unit.test.ts tests/intentProcedure.docs.test.ts tests/perfBenchmark.unit.test.ts tests/perfSandbox.unit.test.ts tests/queryLint.unit.test.ts",
"lint": "eslint src --ext .ts",
"release": "npm run lint && npm run test && npm run build && node -e \"require('fs').mkdirSync('../../tmp', { recursive: true })\" && pnpm pack --out ../../tmp/rawsql-ts-ztd-cli.tgz && pnpm publish --access public",
"test:consumer-validation": "vitest run --config vitest.config.ts tests/testEvidence.unit.test.ts tests/testEvidence.cli.test.ts tests/sqlCatalog.evidence.test.ts tests/testCaseCatalog.evidence.test.ts"
},
"keywords": [
"rawsql-ts",
"ztd",
"cli",
"ddl",
"fixtures"
],
"author": "msugiura",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mk3008/rawsql-ts.git",
"directory": "packages/ztd-cli"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@rawsql-ts/test-evidence-core": "^0.2.0",
"@rawsql-ts/test-evidence-renderer-md": "^0.3.2",
"chokidar": "^5.0.0",
"commander": "^12.0.0",
"diff": "^8.0.3",
"fast-glob": "^3.3.3",
"rawsql-ts": "^0.20.0",
"yaml": "^2.8.3",
"@rawsql-ts/sql-grep-core": "^0.1.9"
},
"peerDependencies": {
"@rawsql-ts/adapter-node-pg": "^0.15.8"
},
"peerDependenciesMeta": {
"@rawsql-ts/adapter-node-pg": {
"optional": true
}
},
"devDependencies": {
"@rawsql-ts/adapter-node-pg": "^0.15.8",
"@rawsql-ts/testkit-core": "^0.16.5",
"@rawsql-ts/testkit-postgres": "^0.15.7",
"@testcontainers/postgresql": "^10.28.0",
"@types/diff": "^5.0.1",
"@types/node": "^22.13.10",
"pg": "^8.11.1",
"testcontainers": "^10.28.0",
"typescript": "^5.8.2",
"vitest": "^4.0.7"
},
"files": [
"dist",
"templates",
"AGENTS.md",
"README.md"
]
}