-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "@khanacademy/format-claude-stream",
"version": "0.1.1",
"description": "Formats output from `claude --output-format stream-json` as human-readable text",
"repository": {
"type": "git",
"url": "https://github.com/Khan/format-claude-stream.git"
},
"bugs": {
"url": "https://github.com/Khan/format-claude-stream/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"bin": "dist/cli/main.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"verify": "prettier --check src && tsc && jest",
"test": "jest",
"fix": "prettier --write src",
"prepare": "husky",
"publish:ci": "git diff --stat --exit-code HEAD && pnpm build && changeset publish"
},
"packageManager": "pnpm@10.26.0",
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"quoteProps": "consistent",
"semi": true,
"tabWidth": 4,
"trailingComma": "all"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@jest/globals": "^30.2.0",
"@swc/jest": "^0.2.39",
"@swc-node/register": "^1.11.1",
"@types/node": "^25.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"chalk": "^5.6.2",
"zod": "^4.3.6"
}
}