-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "article-summarizer-extension",
"version": "1.0.0",
"description": "Chrome extension for AI-powered article summarization using Claude API",
"private": false,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"build": "node scripts/build.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test",
"test:coverage": "npm run build && c8 --include='dist/**/*.js' --exclude='dist/third_party/**' node --test",
"test:coverage:report": "npm run test:coverage && c8 report --reporter=html"
},
"repository": {
"type": "git",
"url": "https://github.com/user/one-click-digest"
},
"bugs": {
"url": "https://github.com/user/one-click-digest/issues"
},
"keywords": [
"chrome-extension",
"claude",
"ai",
"summarizer",
"article"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.1.42",
"@types/filesystem": "^0.0.36",
"c8": "^11.0.0",
"typescript": "^6.0.3"
}
}