-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 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
{
"name": "orbit-browser-extension",
"version": "1.0.3",
"description": "The Orbit extension: all your community data, right at your fingertips.",
"repository": "[email protected]:orbit-love/orbit-browser-extension.git",
"contributors": [
{
"name": "Nicolas Goutay",
"email": "[email protected]"
},
{
"name": "delete-44",
"email": "[email protected]"
}
],
"license": "MIT",
"private": true,
"scripts": {
"start": "parcel watch src/manifest.json --config @parcel/config-webextension --host localhost --no-cache",
"build": "parcel build src/manifest.json --config @parcel/config-webextension --no-cache --no-content-hash",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.10.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.10.0",
"@parcel/config-webextension": "^2.8.3",
"@parcel/transformer-inline-string": "2.8.3",
"@testing-library/dom": "^9.2.0",
"jest": "^29.5.0",
"jest-chrome": "0.8.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"parcel": "^2.8.3",
"postcss": "^8.4.22",
"postcss-rem-to-responsive-pixel": "^5.1.3"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/runtime": "^7.10.0",
"@webcomponents/custom-elements": "^1.6.0",
"alpinejs": "^3.12.0",
"chrome-extension-async": "^3.4.1",
"element-ready": "^6.2.1",
"github-injection": "^1.1.0",
"lit": "^2.7.4",
"tailwindcss": "^3.3.1"
}
}