-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
{
"name": "sslm-seastar-library-manager",
"version": "1.0.0-preproduction",
"description": "SSLM - SeeStar Library Manager: Astrophotography library management application with local web interface",
"main": "server.js",
"bin": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"build": "pkg . --output dist/sslm.exe",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"astrophotography",
"seestar",
"seastar",
"library-manager",
"sslm",
"astronomy"
],
"author": "AstroNoob Tools",
"license": "PolyForm-Noncommercial-1.0.0",
"dependencies": {
"check-disk-space": "^3.4.0",
"express": "^4.22.1",
"fs-extra": "^11.3.3",
"socket.io": "^4.8.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"@yao-pkg/pkg": "^6.14.0",
"nodemon": "^3.1.13",
"rcedit": "^5.0.2",
"supertest": "^7.2.2",
"vitest": "^4.0.18"
},
"pkg": {
"targets": [
"node20-win-x64"
],
"assets": [
"public/**/*",
"config/**/*",
"installer/sslm.iss",
"node_modules/socket.io/client-dist/**"
],
"icon": "public/assets/sslm.ico"
}
}