-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 KB
/
package.json
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
{
"name": "pile",
"version": "1.11.1",
"author": "Emmanuel Krebs <e-krebs@users.noreply.github.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "bunx --bun vite",
"build": "bun run clean && bunx --bun vite build",
"zip": "cd dist && bestzip ../pile.zip *",
"clean": "bun run clean.ts",
"lint": "eslint src",
"type-check": "tsc --noEmit",
"setup-ci": "cp ./src/env.sample.json ./src/env.json"
},
"targets": {
"webext-dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {}
},
"dependencies": {
"@algolia/requester-fetch": "^5.17.1",
"@react-aria/checkbox": "^3.15.0",
"@react-aria/textfield": "^3.15.0",
"@react-aria/visually-hidden": "^3.8.18",
"@react-stately/toggle": "^3.8.0",
"algoliasearch": "^5.17.1",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"extract-colors": "^4.1.1",
"radash": "^12.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-feather": "^2.0.10",
"react-hotkeys-hook": "^4.6.1",
"react-query": "^3.39.3"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@e-krebs/react-library": "^0.0.42",
"@eslint/compat": "^1.2.4",
"@tailwindcss/typography": "^0.5.15",
"@types/bun": "^1.1.14",
"@types/chrome": "^0.0.287",
"@types/node": "^20.17.10",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"bestzip": "^2.2.1",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"tailwindcss-react-aria-components": "^1.2.0",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-svgr": "^4.3.0"
},
"resolutions": {
"json5": "2.2.3",
"**/semver": "^7.5.2"
}
}