-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.97 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
{
"name": "@kylewhirl/scrypted-simplisafe",
"version": "0.1.5",
"description": "Simplisafe integration for Scrypted",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kylewhirl/scrypted-simplisafe.git"
},
"bugs": {
"url": "https://github.com/kylewhirl/scrypted-simplisafe/issues"
},
"homepage": "https://github.com/kylewhirl/scrypted-simplisafe",
"keywords": [
"scrypted",
"plugin",
"simplisafe",
"camera"
],
"type": "commonjs",
"main": "dist/main.nodejs.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"scrypted-setup-project": "scrypted-setup-project",
"prescrypted-setup-project": "scrypted-package-json",
"build": "scrypted-webpack",
"prepublishOnly": "NODE_ENV=production scrypted-webpack",
"prescrypted-vscode-launch": "scrypted-webpack",
"scrypted-vscode-launch": "scrypted-deploy-debug",
"scrypted-deploy-debug": "scrypted-deploy-debug",
"scrypted-debug": "scrypted-debug",
"scrypted-deploy": "scrypted-deploy",
"scrypted-readme": "scrypted-readme",
"scrypted-package-json": "scrypted-package-json",
"dev:logs": "SIMPLISAFE_DEV_CLEAN=1 npm run scrypted-vscode-launch -- 127.0.0.1",
"guard:save": "git add -A && git commit -m \"GUARD: savepoint\" && git tag -f codex-savepoint && echo 'Savepoint set: codex-savepoint'",
"guard:revert": "git reset --hard codex-savepoint && echo 'Reverted to codex-savepoint'"
},
"scrypted": {
"rollup": true,
"name": "SimpliSafe Cameras",
"type": "DeviceProvider",
"interfaces": [
"DeviceProvider",
"Settings"
]
},
"dependencies": {
"@scrypted/sdk": "^0.5.29",
"axios": "^1.7.7",
"axios-retry": "^3.9.1",
"jpeg-extract": "^3.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@types/ws": "^8.18.1"
}
}