-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "vitest-webextension-mock",
"type": "module",
"version": "0.0.7",
"description": "Mock webextension APIs with vitest functions",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --minify --format cjs,esm --out-dir dist",
"dev": "npm run build -- --watch",
"test": "vitest run --coverage",
"release": "bumpp && npm publish",
"lint": "prettier --check . && eslint . --ext .ts"
},
"keywords": [
"mock",
"vitest",
"webextension"
],
"author": "Marwan Zibaoui",
"license": "MIT",
"homepage": "https://github.com/RickyMarou/vitest-webextension-mock#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RickyMarou/vitest-webextension-mock.git"
},
"bugs": "https://github.com/RickyMarou/vitest-webextension-mock/issues",
"peerDependencies": {
"vitest": "*"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/webextension-polyfill": "^0.10.7",
"@vitest/coverage-v8": "^1.4.0",
"badge-maker": "^3.3.1",
"bumpp": "^9.4.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0",
"webextension-polyfill": "^0.10.0"
}
}