generated from PlasmoHQ/qtt
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "@plasmohq/edge-addons-api",
"version": "1.5.0",
"description": "Microsoft Edge Addons API for Node.js",
"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 --minify --clean",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "run-s build test"
},
"author": "Plasmo Corp. <foss@plasmo.com>",
"repository": {
"type": "git",
"url": "https://github.com/PlasmoHQ/edge-addons-api.git"
},
"license": "MIT",
"keywords": [
"edge",
"webstore",
"upload",
"add-ons"
],
"dependencies": {
"got": "14.4.4"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@plasmo/config": "workspace:*",
"@plasmohq/rps": "1.8.7",
"@types/node": "22.9.0",
"cross-env": "7.0.3",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"tsup": "8.3.5",
"typescript": "5.6.3"
}
}