-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.03 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
{
"name": "sourcecapsule",
"version": "1.5.2",
"private": false,
"description": "Export an X (Twitter) Article or post to a single self-contained, fully-offline HTML file with all media and quoted tweets embedded.",
"keywords": [
"twitter",
"x",
"userscript",
"tampermonkey",
"archive",
"html",
"single-file",
"offline"
],
"homepage": "https://github.com/wolfgang-aura/SourceCapsule#readme",
"bugs": {
"url": "https://github.com/wolfgang-aura/SourceCapsule/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wolfgang-aura/SourceCapsule.git"
},
"license": "MIT",
"author": "wolfgang-aura",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "node test/smoke.mjs && node test/dom.test.mjs && node test/extension.test.mjs && node test/strict-capture.test.mjs && node test/share-worker.test.mjs && node test/x-api-probe.test.mjs && node test/native-host.test.mjs",
"test:dom": "node test/dom.test.mjs",
"test:strict": "node test/strict-capture.test.mjs",
"test:share": "node test/share-worker.test.mjs",
"test:x-probe": "node test/x-api-probe.test.mjs && node test/native-host.test.mjs",
"probe:x": "node scripts/probe-x-mobile.mjs",
"accept:extension": "node scripts/accept-extension.mjs",
"build:extension": "node scripts/build-extension.mjs",
"start:browser": "powershell -ExecutionPolicy Bypass -File scripts/start-sourcecapsule-browser.ps1",
"install:native-host": "powershell -ExecutionPolicy Bypass -File scripts/install-native-host.ps1",
"dev:share": "wrangler dev --config share-worker/wrangler.toml --local --port 8787"
},
"comment": "This package.json exists ONLY for lint/format tooling and CI. The shipped artifact is sourcecapsule.user.js, which has no build step.",
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"jsdom": "^29.1.1",
"prettier": "^3.4.2",
"wrangler": "^4.106.0"
}
}