-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 967 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 967 Bytes
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
{
"name": "openin",
"version": "1.0.0",
"description": "Browser extension to add 'Open in VS Code' buttons to source code pages.",
"main": "src/background/background.js",
"scripts": {
"build": "echo 'No build step required'",
"test": "jest",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"try:edge": "start msedge --argumentlist \"--load-extension=$($pwd.Path)\"",
"package:crx": "web-ext build --overwrite-dest",
"zip": "cd src && zip -r ../extension.zip *"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-risney/OpenSourceIn.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/david-risney/OpenSourceIn/issues"
},
"homepage": "https://github.com/david-risney/OpenSourceIn#readme",
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"web-ext": "^8.6.0"
}
}