-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "@rawsql-ts/ddl-docs-cli",
"version": "0.2.6",
"description": "CLI tool that generates Markdown table definition docs from DDL files using rawsql-ts",
"main": "dist/src/index.js",
"bin": {
"ddl-docs": "dist/src/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/src/index.js')){process.exit(cp.spawnSync(npm,['run','build'],{stdio:'inherit'}).status??1)}\"",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"lint": "eslint src --ext .ts"
},
"keywords": [
"rawsql-ts",
"ddl",
"markdown",
"docs",
"cli"
],
"author": "msugiura",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mk3008/rawsql-ts",
"directory": "packages/ddl-docs-cli"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"rawsql-ts": "^0.19.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.8.2",
"vitest": "^4.0.7"
},
"files": [
"dist",
"README.md",
"AGENTS.md"
]
}