-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 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": "lock-code-manager-strategy",
"private": true,
"type": "module",
"version": "0.0.0",
"description": "lock-code-manager-strategy",
"repository": {
"type": "git",
"url": "github.com:raman325/lock_code_manager"
},
"keywords": [],
"author": "raman325",
"license": "MIT",
"scripts": {
"build": "yarn install ; rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint --ext .ts ./ts",
"lint:fix": "yarn lint --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"home-assistant-js-websocket": "^9.6.0",
"lit": "^3.3.2",
"lit-html": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin-js": "^3.1.0",
"@tsconfig/node20": "^20.1.9",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-rollup": "^3.0.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^29.0.2",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.3",
"prettier-plugin-package": "^2.0.0",
"rollup": "^4.60.2",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.0.16"
}
}