-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.93 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
{
"name": "page-content-to-markdown",
"version": "1.0.1",
"description": "A browser extension that turns the main content of any web page into clean Markdown for your notes, docs, or AI.",
"main": "dist/background.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --config=jest.integration.config.js",
"test:integration:watch": "jest --config=jest.integration.config.js --watch",
"test:all": "jest --coverage && jest --config=jest.integration.config.js",
"test:e2e": "jest --config=jest.e2e.config.js",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development --watch",
"lint": "eslint src/",
"start": "npm run build:dev",
"package": "bash scripts/package-release.sh",
"bump": "node scripts/bump-version.js",
"release:amo": "op run --env-file=.env.local --no-masking -- node scripts/release-amo.js",
"status": "bash scripts/private-status.sh",
"status:verbose": "bash scripts/private-status.sh -v"
},
"keywords": [
"browser-extension",
"markdown",
"content-extraction",
"ai",
"universal-compatibility"
],
"author": "Jared Atchison",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaredatch/page-content-to-markdown.git"
},
"bugs": {
"url": "https://github.com/jaredatch/page-content-to-markdown/issues"
},
"homepage": "https://github.com/jaredatch/page-content-to-markdown#readme",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"puppeteer": "^21.3.0",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2"
}
}