-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.67 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
{
"name": "reader",
"version": "0.3.0",
"description": "📖 Web page speed reader.",
"repository": "github:maxmilton/reader",
"bugs": "https://github.com/maxmilton/reader/issues",
"homepage": "https://github.com/maxmilton/reader",
"author": "Max Milton <max@2okki.com>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "NODE_ENV=production bun build.ts",
"dev": "NODE_ENV=development bun build.ts",
"lint": "bun lint:fmt && bun lint:css && bun lint:js && bun lint:ts",
"lint:css": "stylelint '**/*.{css,xcss}'",
"lint:fmt": "biome check",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"test": "bun test --only-failures",
"test:ci": "bun test --coverage --randomize --rerun-each=3",
"test:e2e": "playwright test"
},
"imports": {
"#*": "./src/*"
},
"dependencies": {
"@ekscss/framework": "0.0.60",
"@maxmilton/html-parser": "0.0.12",
"bugbox": "0.0.4",
"stage1": "0.10.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@eslint/js": "9.39.2",
"@maxmilton/eslint-config": "0.3.0",
"@maxmilton/stylelint-config": "0.4.2",
"@maxmilton/test-utils": "0.0.14",
"@playwright/test": "1.57.0",
"@types/bun": "1.3.5",
"@types/chrome": "0.1.32",
"@types/csso": "5.0.4",
"bun-plugin-ekscss": "0.0.3",
"csso": "5.0.5",
"ekscss": "0.0.23",
"eslint": "9.39.2",
"eslint-plugin-unicorn": "62.0.0",
"happy-dom": "20.0.11",
"lightningcss": "1.30.2",
"purgecss": "7.0.2",
"stylelint": "16.26.1",
"stylelint-config-standard": "39.0.1",
"terser": "5.44.1",
"typescript": "5.9.3",
"typescript-eslint": "8.51.0"
}
}