-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.61 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@tomorrowos/sdk",
"version": "1.0.1",
"description": "Server SDK for building and self-hosting digital signage CMS products with TomorrowOS players.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"tomorrowos": "./dist/cli.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE",
"NOTICE",
"REPLIT_SETUP.md",
"VERCEL_SETUP.md",
"VERCEL_QUESTIONS.md",
"VERCEL_UPGRADE.md",
"REPLIT_UPGRADE.md",
"PLAYER_INSTALL.md",
"brand.schema.json",
"brand.example.json"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@replit/object-storage": "^1.0.0",
"@vercel/blob": "^2.6.1",
"better-sqlite3": "^12.11.1",
"cloudinary": "^2.10.0",
"fflate": "^0.8.3",
"pg": "^8.22.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.19.41",
"@types/pg": "^8.20.0",
"@types/ws": "^8.5.10",
"typescript": "^5.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomorrowOS/TomorrowOS_SDK"
},
"homepage": "https://docs.tomorrowos.org",
"bugs": {
"url": "https://github.com/TomorrowOS/TomorrowOS_SDK/issues"
},
"keywords": [
"digital-signage",
"cms",
"tizen",
"brightsign",
"device-management",
"websocket",
"typescript"
],
"license": "Apache-2.0"
}