-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 810 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 810 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
{
"name": "@promptless/promptless-cli",
"version": "0.1.0",
"private": true,
"license": "MPL-2.0",
"description": "CLI that detects LLM prose tells — reuses the vendor-slop-cop detection library and prints Elm-style diagnostics or compact ANSI-highlighted output.",
"type": "module",
"bin": {
"promptless": "./src/cli.ts",
"pless": "./src/cli.ts"
},
"scripts": {
"promptless": "tsx src/cli.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "~5.9.3"
},
"dependencies": {
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
}
}