-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.51 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@malloydata/cli",
"version": "0.0.55",
"description": "Malloy CLI",
"bin": {
"malloy-cli": "dist/index.js",
"malloy-packages": "scripts/malloy-packages.ts"
},
"files": [
"dist/**",
"scripts/malloy-packages.ts"
],
"engines": {
"node": ">=20"
},
"pkg": {
"assets": [
"node_modules/@duckdb/node-bindings-*/libduckdb.*",
"node_modules/@duckdb/node-bindings-*/duckdb.dll"
]
},
"scripts": {
"lint": "tsc --noEmit && gts lint",
"test": "NODE_ENV=test jest --projects jest.config.js --runInBand",
"test-silent": "NODE_ENV=test JEST_SILENT_REPORTER_SHOW_PATHS=true jest --projects jest.config.js --runInBand --reporters jest-silent-reporter",
"test-e2e": "npm run package-npm test > /dev/null 2>&1 && NODE_ENV=test jest --projects=jest-e2e.config.js --runInBand",
"test-silent-e2e": "npm run package-npm test > /dev/null 2>&1 && NODE_ENV=test JEST_SILENT_REPORTER_SHOW_PATHS=true jest --projects=jest-e2e.config.js --runInBand --reporters jest-silent-reporter",
"build": "ts-node scripts/build",
"build-action": "esbuild --platform=node --bundle ./.github/actions/permission-check/lib/index.ts --outfile=./.github/actions/permission-check/dist/index.js",
"build-action-dev": "npm run build-action -- --watch",
"cli": "npx ts-node ./dist/cli.js",
"watch": "ts-node scripts/build watch",
"package": "ts-node scripts/package",
"package-npm": "ts-node scripts/package-npm",
"npm-publish": "ts-node scripts/npm-publish",
"postpack": "npm run build",
"malloy-update-next": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.ts next) && ts-node scripts/sync-duckdb.ts && npm install --no-fund --no-audit",
"malloy-update": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.ts latest) && ts-node scripts/sync-duckdb.ts && npm install --no-fund --no-audit",
"malloy-link": "npm --no-fund --no-audit link $(./scripts/malloy-packages.ts)",
"malloy-unlink": "npm --no-fund --no-save --no-audit unlink $(./scripts/malloy-packages.ts) && npm --no-fund --no-audit install --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malloydata/malloy-cli.git"
},
"author": "Malloy",
"license": "MIT",
"bugs": {
"url": "https://github.com/malloydata/malloy-cli/issues"
},
"homepage": "https://github.com/malloydata/malloy-cli#readme",
"builtIntoPackageDependencies": [
"@malloydata/db-bigquery",
"@malloydata/db-duckdb",
"@malloydata/db-mysql",
"@malloydata/db-postgres",
"@malloydata/db-snowflake",
"@malloydata/db-presto",
"@malloydata/db-trino",
"@malloydata/malloy",
"@malloydata/malloy-connections",
"@malloydata/malloy-sql",
"chalk",
"commander",
"logform",
"winston"
],
"optionalDependencies": {
"@duckdb/node-bindings-darwin-arm64": "1.5.3-r.2",
"@duckdb/node-bindings-darwin-x64": "1.5.3-r.2",
"@duckdb/node-bindings-linux-arm64": "1.5.3-r.2",
"@duckdb/node-bindings-linux-arm64-musl": "1.5.3-r.2",
"@duckdb/node-bindings-linux-x64": "1.5.3-r.2",
"@duckdb/node-bindings-linux-x64-musl": "1.5.3-r.2",
"@duckdb/node-bindings-win32-arm64": "1.5.3-r.2",
"@duckdb/node-bindings-win32-x64": "1.5.3-r.2"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@commander-js/extra-typings": "^12.1.0",
"@duckdb/node-api": "1.5.3-r.2",
"@duckdb/node-bindings": "1.5.3-r.2",
"@malloydata/db-bigquery": "0.0.404",
"@malloydata/db-duckdb": "0.0.404",
"@malloydata/db-postgres": "0.0.404",
"@malloydata/db-snowflake": "0.0.404",
"@malloydata/db-trino": "0.0.404",
"@malloydata/malloy": "0.0.404",
"@malloydata/malloy-connections": "0.0.404",
"@malloydata/malloy-sql": "0.0.404",
"@types/jest": "^29.2.5",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@yao-pkg/pkg": "^6.20.0",
"ajv": "^8.12.0",
"axios": "^1.4.0",
"chalk": "^4.0.0",
"commander": "^12.1.0",
"csv-stringify": "^6.4.0",
"esbuild": "0.25.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gts": "^3.1.1",
"jest": "^29.3.1",
"jest-silent-reporter": "^0.5.0",
"logform": "^2.5.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"winston": "^3.9.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
}
}