-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 924 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 924 Bytes
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
{
"name": "ldc-via-client",
"version": "1.0.0",
"description": "A static web application for accessing and managing LDC Via API instances",
"main": "index.html",
"scripts": {
"start": "npx serve .",
"dev": "npx serve . --live",
"build": "echo 'Static site - no build required'",
"serve": "python -m http.server 8000",
"serve-php": "php -S localhost:8000"
},
"keywords": [
"ldc-via",
"api-client",
"static-web-app",
"database-management",
"crud-interface"
],
"author": "LDC Via Team",
"license": "MIT",
"devDependencies": {
"serve": "^14.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/ldc-via-client.git"
},
"bugs": {
"url": "https://github.com/your-username/ldc-via-client/issues"
},
"homepage": "https://github.com/your-username/ldc-via-client#readme",
"engines": {
"node": ">=14.0.0"
}
}