-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "xl-replit",
"version": "0.1.0",
"description": "Extra features for the Replit website.",
"keywords": [
"xl",
"replit",
"chrome",
"firefox",
"browser",
"extension",
"addon"
],
"author": "LuisAFK",
"scripts": {
"dev": "zx ./scripts/build.mjs dev",
"build": "zx ./scripts/build.mjs prod",
"dev:chrome": "zx ./scripts/build.mjs dev chrome",
"build:chrome": "zx ./scripts/build.mjs prod chrome",
"dev:firefox": "zx ./scripts/build.mjs dev firefox",
"build:firefox": "zx ./scripts/build.mjs prod firefox",
"start:firefox": "web-ext run --source-dir ./dist/firefox/",
"lint:chrome": "cd dist/chrome && web-ext lint",
"lint:firefox": "cd dist/firefox && web-ext lint",
"clean": "rm -rf dist/*",
"clean:cache": "rm -rf dist/.cache",
"clean:all": "rm -rf dist",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/lafkpages/XL-Replit.git"
},
"devDependencies": {
"@sentry/browser": "^7.55.2",
"@types/chrome": "^0.0.237",
"@types/requirejs": "^2.1.34",
"@types/uglify-js": "^3.17.1",
"esbuild": "^0.18.1",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"web-ext": "^7.6.2"
},
"dependencies": {
"@replit/protocol": "^0.3.12",
"monaco-editor": "^0.39.0",
"requirejs": "^2.3.6",
"uglify-js": "^3.17.4"
},
"peerDependencies": {
"zx": "^7.2.2"
}
}