forked from steipete/summarize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.9 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.9 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@steipete/summarize",
"version": "0.11.2",
"description": "Link → clean text → summary.",
"bin": {
"summarize": "./dist/cli.js",
"summarizer": "./dist/cli.js"
},
"files": [
"dist",
"docs",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js"
},
"./content": {
"types": "./dist/types/content/index.d.ts",
"import": "./dist/esm/content/index.js"
},
"./prompts": {
"types": "./dist/types/prompts/index.d.ts",
"import": "./dist/esm/prompts/index.js"
}
},
"scripts": {
"build": "pnpm clean && pnpm -C packages/core build && pnpm build:lib && pnpm build:cli",
"build:bun": "bun scripts/build-bun.js",
"build:bun:test": "bun scripts/build-bun.js --test",
"build:cli": "node scripts/build-cli.mjs",
"build:lib": "tsc -p tsconfig.build.json",
"check": "pnpm format:check && pnpm lint && pnpm test:coverage",
"clean": "rimraf dist packages/core/dist",
"docs:list": "tsx scripts/docs-list.ts",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"lint": "oxlint --type-aware --tsconfig tsconfig.build.json --config .oxlintrc.json .",
"lint:fix": "oxlint --type-aware --tsconfig tsconfig.build.json --config .oxlintrc.json --fix . && pnpm format",
"prepare": "pnpm build",
"release": "bash scripts/release.sh",
"s": "tsx src/cli.ts",
"summarize": "tsx src/cli.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:build": "pnpm build && pnpm test:coverage",
"test:extension-e2e": "pnpm -C apps/chrome-extension test:e2e",
"typecheck": "tsc -p tsconfig.build.json --noEmit"
},
"dependencies": {
"@mariozechner/pi-ai": "^0.52.12",
"@steipete/summarize-core": "workspace:*",
"commander": "^14.0.3",
"file-type": "^21.3.0",
"gpt-tokenizer": "^3.4.0",
"json5": "^2.2.3",
"markdansi": "^0.2.1",
"mime": "^4.1.0",
"ora": "^9.3.0",
"osc-progress": "^0.3.0",
"tokentally": "^0.1.1",
"tslog": "^4.10.2"
},
"devDependencies": {
"@fal-ai/client": "^1.9.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.2.3",
"@types/sanitize-html": "^2.16.0",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"oxfmt": "0.32.0",
"oxlint": "^1.47.0",
"oxlint-tsgolint": "^0.12.2",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"pnpm": {
"overrides": {
"vite": "7.3.0"
}
}
}