-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "imitate-image",
"displayName": "Imitate Image",
"geckoId": "imitate-image@suienzan",
"version": "0.8.2",
"license": "MIT",
"type": "module",
"scripts": {
"manifest:firefox": "NODE_ENV=firefox tsx src/manifest.ts",
"manifest:chrome": "NODE_ENV=chrome tsx src/manifest.ts",
"dev:chrome": "chokidar 'src/**/*' -c 'rm -rf extension/chrome && pnpm run build:chrome' --initial",
"dev:firefox": "chokidar 'src/**/*' -c 'rm -rf extension/firefox && pnpm run build:firefox' --initial",
"build:firefox": "tsup --env.target=firefox",
"build:chrome": "tsup --env.target=chrome",
"pack:crx": "bash pack-crx.sh",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"jsonfile": "^6.1.0"
},
"devDependencies": {
"@types/chrome": "^0.0.195",
"@types/jsonfile": "^6.1.0",
"@types/node": "^18.7.9",
"@types/offscreencanvas": "^2019.6.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chokidar-cli": "^3.0.0",
"crx": "^5.0.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.0",
"tsup": "^6.2.2",
"tsx": "^3.8.2",
"typescript": "^4.5.5",
"vitest": "^0.22.1"
}
}