-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
25 lines (25 loc) · 902 Bytes
/
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
{
"name": "chrome-meta-debugger",
"version": "1.0.0",
"type": "module",
"description": "This Google Chrome extension simplifies the daily work with webpage meta data. It allows you to see all these information at a glance, nicely grouped and in real time within your DevTools.",
"scripts": {
"test": "vitest",
"build": "rm -r ./dist; esbuild ./src/*.ts --bundle --outdir=./dist/ && cp ./src/*.{html,css,json} ./dist/ && cp -R ./src/{fonts,icons,img,theme} ./dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/bluemoehre/chrome-meta-debugger.git"
},
"author": "bluemoehre",
"license": "GPL-3.0",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@types/chrome": "^0.0.268",
"esbuild": "^0.23.0",
"jsdom": "^24.1.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.4"
}
}