-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@liascript/devserver",
"version": "1.1.35--0.16.10",
"description": "Run a development server for LiaScript locally",
"main": "dist/index.js",
"scripts": {
"build": "npx parcel build src/index.ts && npm run shebang && npm run lib",
"lib": "tsc --module commonjs -d src/lib.ts --outDir dist",
"shebang": "sed -i '1i #!/usr/bin/env node\\n' dist/index.js && chmod +x dist/index.js",
"release": "npm run release_win && npm run release_linux && npm run release_macos",
"release_win": "pkg . -t node18-win --output release/windows/liascript-devserver -C GZip",
"release_linux": "pkg . -t node18-linux --output release/linux/liascript-devserver -C GZip",
"release_macos": "pkg . -t node18-macos --output release/macos/liascript-devserver -C GZip"
},
"repository": {
"type": "git",
"url": "git://github.com/LiaScript/LiaScript-DevServer.git"
},
"bugs": {
"url": "https://github.com/LiaScript/LiaScript-DevServer/issues",
"email": "LiaScript@web.de"
},
"homepage": "https://github.com/LiaScript/LiaScript-DevServer/blob/main/README.md",
"bin": {
"liascript-devserver": "dist/index.js",
"liadev": "dist/index.js"
},
"preferGlobal": true,
"keywords": [
"LiaScript",
"OER",
"Markdown",
"devServer"
],
"author": "André Dietrich",
"license": "MIT",
"dependencies": {
"@liascript/editor": "^1.1.18--0.16.10",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"express": "^4.18.2",
"express-handlebars": "^5.3.5",
"ip": "^1.1.8",
"minimist": "^1.2.8",
"open": "^8.4.2",
"reloadsh.js": "^2.2.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^22.7.3",
"parcel": "^2.10.3",
"typescript": "^4.6.3"
},
"engines": {
"node": ">= 12"
},
"targets": {
"main": {
"context": "node",
"optimize": true
}
},
"pkg": {
"assets": [
"node_modules/@liascript/editor/dist/**/*",
"node_modules/reloadsh.js/reloader.browser.js",
"views/**/*"
]
}
}