-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
57
58
{
"name": "withexeditorhost",
"description": "Native messaging host for withExEditor",
"author": "asamuzaK",
"license": "MIT",
"homepage": "https://github.com/asamuzaK/withExEditorHost",
"bugs": "https://github.com/asamuzaK/withExEditorHost/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/asamuzaK/withExEditorHost.git"
},
"engines": {
"node": ">=18"
},
"type": "module",
"exports": {
"default": "./index.js"
},
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"commander": "^13.1.0",
"semver-parser": "^4.1.7",
"undici": "^7.2.3",
"web-ext-native-msg": "^8.0.6"
},
"devDependencies": {
"boxednode": "^2.4.4",
"c8": "^10.1.3",
"chai": "^5.1.2",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unicorn": "^56.0.1",
"genversion": "^3.2.0",
"globals": "^15.14.0",
"jszip-cli": "^1.4.24",
"mocha": "^11.0.1",
"neostandard": "^0.12.0",
"sinon": "^19.0.2"
},
"overrides": {
"glob": "^10.4.5"
},
"scripts": {
"bundle-js": "esbuild --platform=node --outdir=./bundle --bundle --minify ./index.js",
"bundle-bin": "boxednode --node-version=lts --source=./bundle/index.js",
"genversion": "genversion --es6 --semi ./modules/version.js",
"lint": "eslint --fix .",
"prebuild": "npm run genversion && npm run lint && npm run test",
"setup": "node ./index.js setup",
"start": "node ./index.js",
"test": "c8 --reporter=text mocha --exit test/*.test.js",
"zip-jszip": "jszip"
},
"version": "8.1.2"
}