-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.38 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.38 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
{
"name": "ecoindex-browser-plugin",
"version": "2.11.0",
"description": "This is the source code of the Ecoindex browser plugin. This simple plugin allows you to check the Ecoindex of any website you visit.",
"scripts": {
"manifest:tmp": "node bin/temp-manifest.mjs",
"manifest:update": "node bin/update-manifest.mjs",
"build:chrome": "node ./bin/build-extension.mjs chrome",
"build:firefox": "node ./bin/build-extension.mjs firefox",
"build:all": "npm run build:chrome && npm run build:firefox",
"lint": "npm run manifest:tmp && npx @biomejs/biome lint && web-ext lint",
"lint:fix": "npm run manifest:tmp && npx @biomejs/biome lint --write && web-ext lint",
"start": "npm run manifest:tmp && web-ext run",
"start:dev": "npm run manifest:tmp && web-ext run --devtools",
"preVersion": "npm run manifest:tmp && npm run lint",
"version": "npm run manifest:update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnumr/EcoIndex_browser-plugin.git"
},
"author": "Vincent Vatelot <[email protected]>",
"license": "Creative commons CC-By-NC-ND",
"bugs": {
"url": "https://github.com/cnumr/EcoIndex_browser-plugin/issues"
},
"homepage": "https://github.com/cnumr/EcoIndex_browser-plugin",
"devDependencies": {
"@biomejs/biome": "2.1.1"
},
"dependencies": {
"fs-extra": "^11.3.0",
"web-ext": "^10.1.0"
}
}