-
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.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 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": "pathfinder",
"displayName": "Pathfinder Extension",
"description": "Pathfinder is a helper Chrome extension",
"private": true,
"version": "0.0.1",
"repository": {
"url": "https://github.com/Reterics/pathfinder",
"type": "git"
},
"author": {
"email": "reterics.attila@gmail.com",
"url": "https://reterics.com",
"name": "Attila Reterics"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && npm run build:chrome && npm run build:firefox",
"build:chrome": "vite build",
"build:firefox": "vite build -c vite.firefox.config.js",
"package": "npm run package:chrome && npm run package:firefox",
"package:chrome": "node package.js chrome",
"package:firefox": "node package.js firefox",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@crxjs/vite-plugin": "2.0.0-beta.25",
"autoprefixer": "^10.4.19",
"codemirror": "^6.0.1",
"postcss": "^8.4.39",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1",
"tailwindcss": "^3.4.6",
"use-debounce": "^10.0.1",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "~0.10.7",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"adm-zip": "^0.5.14",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"typescript": "^5.2.2",
"vite": "^5.3.4"
}
}