-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
{
"name": "source-detector",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node --watch --import tsx scripts/build.ts --watch --browser=chrome",
"dev:chrome": "node --watch --import tsx scripts/build.ts --watch --browser=chrome",
"dev:firefox": "node --watch --import tsx scripts/build.ts --watch --browser=firefox",
"build": "tsx scripts/build.ts --browser=chrome",
"build:chrome": "tsx scripts/build.ts --browser=chrome",
"build:firefox": "tsx scripts/build.ts --browser=firefox",
"build:all": "npm run build:chrome && npm run build:firefox",
"clean": "rimraf dist"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.10",
"@mui/lab": "^6.0.0-beta.18",
"@mui/material": "^6.1.10",
"@mui/x-tree-view": "^7.23.2",
"@types/crypto-js": "^4.2.2",
"@types/webextension-polyfill": "^0.12.1",
"crypto-js": "^4.2.0",
"dexie": "^4.0.1",
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.0.2",
"source-map-js": "^1.2.1",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/archiver": "^6.0.3",
"@types/chrome": "^0.0.287",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.1",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"archiver": "^5.3.1",
"esbuild": "^0.20.1",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"fs-extra": "^11.2.0",
"globals": "^15.12.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.5",
"sharp": "^0.33.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.15.0"
},
"description": "Chrome extension for automatically collecting and viewing source maps",
"main": "eslint.config.js",
"keywords": [
"chrome-extension",
"sourcemap",
"developer-tools"
],
"author": "",
"license": "MIT"
}