-
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.82 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.82 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": "pageprint",
"version": "0.1.1",
"description": "Browser extension that converts web pages to clean, print-optimized format",
"type": "module",
"module": "index.ts",
"scripts": {
"dev": "bun run build:watch",
"build": "bun run build:extension && bun run build:popup",
"build:watch": "concurrently \"bun run build:extension:dev --watch\" \"bun run build:popup --watch\"",
"build:extension": "bun build.ts",
"build:extension:dev": "bun build.ts --dev",
"build:popup": "vite build",
"package": "bun run build && bun run zip",
"zip": "cd dist && zip -r ../pageprint.zip .",
"release": "./release-version",
"test": "bun test",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@types/bun": "latest",
"@types/chrome": "^0.0.246",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"eslint": "^8.50.0",
"eslint-plugin-svelte": "^3.13.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.4.31",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^4.2.1",
"svelte-check": "^3.5.2",
"svelte-eslint-parser": "^1.4.1",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"dependencies": {
"@mozilla/readability": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"canvas": "^2.11.2",
"jsdom": "^22.1.0",
"ts-pattern": "^5.9.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,svelte,json,css,md}": "prettier --write",
"src/**/*.{ts,tsx,svelte}": "eslint --fix"
}
}