-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@ryanflorence/sqlite-typegen",
"version": "0.2.0",
"description": "",
"author": "Ryan Florence <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanflorence/sqlite-typegen.git"
},
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"bin": "./dist/cli.js",
"exports": {
".": "./dist/sqlite-typegen.js",
"./package.json": "./package.json"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.4.1",
"prettier": "^3.3.3",
"typescript": "^5.7.0"
},
"scripts": {
"build": "tsc --project tsconfig.lib.json",
"test": "node --experimental-strip-types --disable-warning=ExperimentalWarning --test ./src/**/*.test.ts",
"prepare": "pnpm run build",
"cli": "node --experimental-strip-types --disable-warning=ExperimentalWarning ./src/cli.ts"
},
"packageManager": "[email protected]",
"dependencies": {
"arg": "5.0.2",
"better-sqlite3": "11.6.0",
"cli-highlight": "2.1.11",
"picocolors": "1.1.1",
"tiny-invariant": "1.3.3"
}
}