-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.55 KB
/
package.json
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
{
"name": "typesql-cli",
"version": "0.15.2",
"description": "",
"main": "index.js",
"bin": {
"typesql": "cli.js"
},
"scripts": {
"build": "tsc -w",
"test": "mocha --enable-source-maps dist/tests/**/*.js --watch --watch-files **/*.js",
"antlr4ts": "antlr4ts -Xexact-output-dir -o ./parser/ ./grammar/*.g4",
"dist": "tsc && shx cp ./package.json ./README.md ./dist/src && cd ./dist/src && npm publish",
"dist-exp": "tsc && shx cp ./package.json ./README.md ./dist/src && cd ./dist/src && npm publish --tag experimental",
"gen": "node ./dist/src/cli.js compile",
"gen-pg": "node ./dist/src/cli.js --config ./tests/postgres-e2e/typesql.json compile"
},
"keywords": [],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241218.0",
"@types/better-sqlite3": "^7.6.12",
"@types/lodash.uniqby": "^4.7.9",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.10",
"@types/pg": "^8.11.10",
"@types/yargs": "^17.0.33",
"mocha": "^10.8.2",
"pg": "^8.13.1",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@wsporto/typesql-parser": "^0.0.3",
"better-sqlite3": "^11.7.0",
"camelcase": "^6.3.0",
"chokidar": "^3.6.0",
"code-block-writer": "^13.0.3",
"fp-ts": "^2.16.9",
"glob": "^11.0.0",
"libsql": "^0.4.7",
"lodash.uniqby": "^4.7.0",
"moment": "^2.30.1",
"mysql2": "^3.11.5",
"neverthrow": "^8.1.1",
"postgres": "^3.4.5",
"yargs": "^17.7.2"
}
}