-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "llm-whip",
"version": "1.0.20",
"author": "bewinxed",
"repository": {
"type": "git",
"url": "https://github.com/bewinxed/llm-whip.git"
},
"main": "dist/llm-whip.js",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/node": "^20.0.0"
},
"bin": {
"llm-whip": "dist/llm-whip.js"
},
"bugs": {
"url": "https://github.com/bewinxed/llm-whip/issues"
},
"description": "File monitoring tool that detects lazy patterns and anti-cheat behaviors in code and LLM conversations",
"engines": {
"node": ">=16.0.0",
"bun": ">=1.0.0"
},
"files": [
"dist/**/*",
"schema.json",
"README.md"
],
"homepage": "https://github.com/bewinxed/llm-whip#readme",
"keywords": [
"llm",
"claude",
"monitoring",
"anti-cheat",
"code-quality",
"typescript",
"bun"
],
"license": "MIT",
"scripts": {
"build": "bun build ./src/llm-whip.ts --outdir ./dist --target node --format esm --banner=\"#!/usr/bin/env node\" && cp ./src/types.ts ./dist/types.ts",
"dev": "bun run src/llm-whip.ts",
"lint": "bunx biome lint --write src/ test/",
"test": "bun test",
"test:watch": "bun test --watch",
"clean": "rm -rf dist",
"prepare": "bun run clean && bun run build",
"prepublishOnly": "bun run prepare",
"release": "bun run prepare && bun publish",
"release:patch": "npm version patch --force && bun run release",
"release:minor": "npm version minor --force && bun run release",
"release:major": "npm version major --force && bun run release"
},
"type": "module",
"types": "dist/llm-whip.d.ts",
"exports": {
".": "./dist/llm-whip.js",
"./types": "./dist/types.ts"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"ignore": "^7.0.5"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}