-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "copy-cat",
"version": "1.0.0",
"description": "A ComputerCraft emulator for the web",
"main": "src/server/index.js",
"type": "module",
"keywords": [
"computercraft"
],
"author": "SquidDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SquidDev-CC/copy-cat"
},
"scripts": {
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"host": "python -m http.server -d build/web --bind 127.0.0.1 8080",
"host:min": "python -m http.server -d build/webMin --bind 127.0.0.1 8080"
},
"dependencies": {
"@squid-dev/cc-web-term": "^2.0.1",
"jszip": "^3.5.0",
"monaco-editor": "^0.50.0",
"preact": "^10.5.7",
"requirejs": "^2.3.6",
"setimmediate": "^1.0.5",
"style-inject": "^0.3.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-url": "^8.0.0",
"@swc/core": "^1.3.92",
"@types/requirejs": "^2.1.32",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.3.0",
"lightningcss": "^1.22.0",
"rollup": "^4.0.0",
"rollup-plugin-license": "^3.0.0",
"typescript": "^5.0.2"
}
}