-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 950 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 950 Bytes
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
{
"name": "@teichai/datagen",
"version": "0.1.12",
"description": "A easy to use CLI to generate JSONL datasets from a TXT file using LLMs.",
"type": "module",
"license": "Apache-2.0",
"keywords": [
"cli",
"dataset",
"jsonl",
"llm",
"openrouter"
],
"bin": {
"datagen": "dist/cli.js"
},
"files": [
"dist/**",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"prepack": "npm run build",
"start": "node dist/index.js",
"dev": "node scripts/dev.mjs",
"test": "npm run build:test && node --test dist-test/test/**/*.test.js"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}