-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.25 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.25 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
96
97
98
99
100
101
102
103
104
105
{
"name": "@steipete/summarize",
"version": "0.16.3",
"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": "tsgo -p tsconfig.build.json",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test:coverage",
"clean": "rimraf dist packages/core/dist",
"dev:cli": "pnpm -C packages/core build && tsx src/cli.ts",
"docs:build": "node scripts/build-docs-site.mjs",
"docs:list": "tsx scripts/docs-list.ts",
"docs:serve": "bash scripts/docs-serve.sh",
"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",
"prepublishOnly": "node scripts/require-pnpm-publish.mjs",
"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": "pnpm -C packages/core typecheck && tsgo -p tsconfig.build.json --noEmit"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.75.3",
"@steipete/summarize-core": "workspace:*",
"commander": "^14.0.3",
"file-type": "^22.0.1",
"gpt-tokenizer": "^3.4.0",
"json5": "^2.2.3",
"markdansi": "^0.2.1",
"mime": "^4.1.0",
"ora": "^9.4.0",
"osc-progress": "^0.3.0",
"tokentally": "^0.1.1",
"tslog": "^4.10.2",
"undici": "8.3.0"
},
"devDependencies": {
"@fal-ai/client": "^1.10.1",
"@types/jsdom": "^28.0.3",
"@types/node": "^24.12.4",
"@types/sanitize-html": "^2.16.1",
"@typescript/native-preview": "7.0.0-dev.20260526.1",
"@vitest/coverage-v8": "^4.1.6",
"esbuild": "^0.28.0",
"oxfmt": "0.52.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.23.0",
"rimraf": "^6.1.3",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"overrides": {
"uuid": "14.0.0",
"vite": "8.0.10"
},
"patchedDependencies": {
"@zag-js/preact@1.40.0": "patches/@zag-js__preact@1.40.0.patch"
}
}
}