-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.29 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
52
53
54
55
56
57
58
59
60
61
{
"name": "recordingnotes",
"version": "0.2.8",
"description": "Minimalist podcast note-taking system with real-time collaboration",
"main": "server.js",
"type": "module",
"bin": {
"recordingnotes": "bin/recordingnotes.cjs"
},
"files": [
"bin/",
"services/",
"public/",
"middleware/",
"routes/",
"websocket/",
"server.js",
"startup.js",
".env.example",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "NODE_ENV=test RECNOTES_DB_PATH=test.db node --test test/*.test.js",
"init-db": "node bin/init-db.js",
"db:reset": "node bin/reset-db.js"
},
"engines": {
"node": ">=23.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atmosfar/recordingnotes.git"
},
"keywords": [
"podcast",
"notes",
"recording",
"notetaking",
"realtime",
"timecode",
"editing",
"collaboration",
"websocket",
"sqlite"
],
"author": "atmosfar <atmosfar@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-rate-limit": "^8.5.2",
"express-session": "^1.19.0",
"ws": "^8.19.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}