-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "toak",
"version": "3.1.1",
"type": "module",
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/seemueller-io/toak.git",
"author": "Geoff Seemueller",
"description": "Open-source CLI/Library for tokenizing a git repository into a markdown file.",
"keywords": [
"cli",
"tool",
"utility",
"tokenize",
"git",
"repository",
"code",
"export",
"markdown",
"prompt",
"ai",
"llm"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"bin": {
"toak": "./dist/cli.js"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && bun build ./src/index.ts ./src/cli.ts --splitting --outdir dist --target node && bun ./build.ts",
"test": "bun test",
"prepublishOnly": "bun run build",
"dev": "bun run .",
"deploy:dev": "bun run build && bun publish .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\"",
"fix": "bun format && bun lint:fix"
},
"dependencies": {
"glob": "^11.0.0",
"llama3-tokenizer-js": "^1.0.0",
"micromatch": "^4.0.8"
},
"peerDependencies": {
"node": ">=14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/bun": "latest",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.9.1",
"bun": "latest",
"bun-plugin-isolated-decl": "^0.1.6",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"oxc-transform": "^0.44.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}