forked from joelshepherd/tabliss
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.42 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "tablissng",
"version": "1.6.6",
"description": "A beautiful, customizable New Tab page. This is an actively maintained fork of the original Tabliss project.",
"license": "GPL-3.0",
"private": true,
"packageManager": "pnpm@11.0.4",
"author": {
"name": "BookCatKid",
"url": "https://github.com/BookCatKid"
},
"contributors": [
{
"name": "Joel Shepherd",
"url": "https://github.com/joelshepherd"
}
],
"scripts": {
"build": "pnpm run build:web",
"build:prepare": "pnpm run translations compile",
"build:chromium": "pnpm run build:prepare && cross-env NODE_ENV=production BUILD_TARGET=chromium rspack",
"build:firefox": "pnpm run build:prepare && cross-env NODE_ENV=production BUILD_TARGET=firefox rspack",
"build:safari": "pnpm run build:prepare && cross-env NODE_ENV=production BUILD_TARGET=safari rspack",
"build:web": "pnpm run build:prepare && cross-env NODE_ENV=production BUILD_TARGET=web rspack",
"dev": "pnpm run dev:web",
"dev:chromium": "cross-env BUILD_TARGET=chromium rspack --watch",
"dev:firefox": "cross-env BUILD_TARGET=firefox rspack --watch",
"dev:safari": "cross-env BUILD_TARGET=safari rspack --watch",
"dev:web": "cross-env BUILD_TARGET=web rspack serve",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "tsc && rstest run",
"translations": "node ./scripts/translations/translations.js",
"sign:firefox": "node ./scripts/firefox-sign-manual.js",
"deps:check": "pnpm dlx npm-check",
"deps:update": "pnpm dlx npm-check -u",
"typecheck": "tsc",
"prepare": "husky"
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint --fix --cache",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@iconify/react": "^6.0.2",
"core-js": "^3.49.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"feather-icons": "^4.29.2",
"in-browser-language": "^1.0.3",
"nanoid": "^5.1.11",
"normalize.css": "^8.0.1",
"react": "^19.2.5",
"react-activity-calendar": "^3.2.0",
"react-crossfade-simple": "^1.0.7",
"react-dom": "^19.2.5",
"react-error-boundary": "^6.1.1",
"react-github-btn": "^1.4.0",
"react-github-calendar": "^5.0.6",
"react-intl": "^10.1.4",
"react-moveable": "^0.56.0",
"tlds": "^1.261.0",
"webextension-polyfill": "^0.12.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.7.1",
"@eslint/js": "^10.0.1",
"@formatjs/cli": "^6.14.4",
"@rspack/cli": "2.0.1",
"@rspack/core": "2.0.1",
"@rspack/dev-server": "2.0.1",
"@rspack/plugin-react-refresh": "^2.0.0",
"@rstest/core": "^0.9.10",
"@types/core-js": "~2.5.8",
"@types/feather-icons": "~4.29.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/webextension-polyfill": "^0.12.5",
"cross-env": "^10.1.0",
"eslint": "^10.3.0",
"eslint-plugin-formatjs": "^6.4.7",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"workbox-build": "^7.4.0"
},
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.5",
"follow-redirects": ">=1.16.0"
}
}
}