forked from TurboWarp/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "@turbowarp/extensions",
"version": "0.0.1",
"description": "Unsandboxed extensions for TurboWarp",
"scripts": {
"start": "node development/server.js",
"dev": "node development/server.js",
"build": "node development/build-production.js",
"validate": "node development/validate.js",
"lint": "eslint development extensions --max-warnings=0",
"format": "prettier . --write",
"check-format": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TurboWarp/extensions.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TurboWarp/extensions/issues"
},
"homepage": "https://github.com/TurboWarp/extensions#readme",
"dependencies": {
"@turbowarp/scratchblocks": "^3.6.4",
"@turbowarp/types": "git+https://github.com/TurboWarp/types-tw.git#tw",
"adm-zip": "^0.5.10",
"chokidar": "^3.5.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"image-size": "^1.0.2",
"markdown-it": "^13.0.2"
},
"devDependencies": {
"eslint": "^8.51.0",
"prettier": "^3.0.3"
},
"private": true
}