-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.89 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
{
"name": "nl2sql",
"version": "1.1.2",
"description": "Browser-first TypeScript toolkit for natural-language to SQL agent loops with verification.",
"type": "module",
"license": "MIT",
"author": "",
"keywords": [
"nl2sql",
"text-to-sql",
"ai",
"agent",
"openai",
"alasql"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/amirziveh/nl2sql"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src __tests__",
"format": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"knip": "knip",
"publint": "publint",
"attw": "attw --pack"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.39.4",
"@vitest/coverage-v8": "^2.1.9",
"alasql": "^4.17.3",
"eslint": "^9.39.4",
"knip": "^5.88.1",
"openai": "^4.104.0",
"prettier": "^3.9.4",
"publint": "^0.2.12",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.62.1",
"vitest": "^2.1.9"
},
"peerDependencies": {
"alasql": "^4",
"openai": ">=4"
},
"peerDependenciesMeta": {
"alasql": {
"optional": true
}
},
"overrides": {
"@arethetypeswrong/core": {
"fflate": "0.7.4"
}
}
}