Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
34 lines (34 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
{
"name": "@codeselfstudy/codeselfstudy_browser_extension",
"version": "0.11.2",
"description": "A browser extension for Code Self Study",
"main": "background_script.js",
"scripts": {
"start": "bun web-ext run -i \"tags\"",
"serve:firefox": "bun web-ext run -i \"tags\"",
"serve:chromium": "bun web-ext run -t chromium -i \"tags\"",
"test": "bun test",
"format": "prettier --write '**/*.{md,mdx,ts,js,mjs,cjs,jsx,tsx,yaml,yml,json,html,css,scss,vue,astro}'",
"build": "just build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeselfstudy/codeselfstudy_browser_extension.git"
},
"keywords": [
"codeselfstudy"
],
"author": "J. Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeselfstudy/codeselfstudy_browser_extension/issues"
},
"homepage": "https://github.com/codeselfstudy/codeselfstudy_browser_extension#readme",
"devDependencies": {
"@types/bun": "1.3.14",
"prettier": "3.9.4",
"prettier-plugin-tailwindcss": "0.8.0",
"web-ext": "10.4.0",
"webextension-polyfill": "0.12.0"
}
}