generated from PlasmoHQ/qtt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "@plasmohq/mozilla-addons-api",
"version": "2.7.1",
"description": "Mozilla Add-ons API for NodeJS",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": ">=16.14"
},
"scripts": {
"dev": "tsup src/index.ts --format esm --watch --sourcemap inline",
"build": "tsup src/index.ts --format esm --dts-resolve --sourcemap --clean",
"test": "run-s test:*",
"test:zip": "mb test-zip",
"test:e2e": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "run-s build test"
},
"repository": {
"type": "git",
"url": "https://github.com/PlasmoHQ/mozilla-addons-api.git"
},
"author": "Plasmo Corp. <[email protected]>",
"keywords": [
"browser-extensions",
"firefox",
"webext",
"browser-addons",
"browser-plugins"
],
"license": "MIT",
"dependencies": {
"form-data-encoder": "3.0.0",
"formdata-node": "5.0.1",
"got": "13.0.0",
"jsonwebtoken": "9.0.0"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@plasmo/config": "workspace:*",
"@plasmohq/mystic-box": "1.4.0",
"@plasmohq/rps": "1.8.6",
"@types/jsonwebtoken": "9.0.2",
"@types/node": "20.3.1",
"cross-env": "7.0.3",
"esbuild": "0.18.6",
"fflate": "0.8.0",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"tsup": "7.0.0",
"typescript": "5.1.3"
}
}