Skip to content

Commit

Permalink
Package fixes (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoe-codez authored Nov 20, 2024
1 parent 8c7f322 commit 5bd068d
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 173 deletions.
29 changes: 29 additions & 0 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "DA CodeQL"
version: 3
options:
# Adjust the number of threads used by CodeQL
threads: 0 # Use all available CPU cores
# Enable experimental analysis options if needed
experimental: false
queries:
# Specify the query packs to use
- name: security-and-quality
include:
- codeql/javascript-queries
# Additional custom queries can be added here if needed
databases:
# Specify the languages and their corresponding extractors
languages:
javascript:
# Specify paths for the TypeScript configuration file
typescript: [tsconfig.json]
include:
- src/
# Paths to the source code to be analyzed
source:
- src/
# Paths to external dependencies to be excluded
exclude:
- node_modules/
- dist/
- out/
92 changes: 0 additions & 92 deletions .github/workflows/codeql.yml

This file was deleted.

18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "@digital-alchemy/synapse",
"repository": "https://github.com/Digital-Alchemy-TS/synapse",
"homepage": "https://docs.digital-alchemy.app/Synapse",
"version": "24.11.3",
"version": "24.11.4",
"scripts": {
"start:mock": "tsx src/mock/main.mts",
"build": "rm -rf dist; tsc",
Expand All @@ -27,6 +27,9 @@
".": "./dist/index.mjs"
},
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.5.0"
},
"peerDependencies": {
"@digital-alchemy/core": "*",
"@digital-alchemy/hass": "*",
Expand All @@ -41,27 +44,26 @@
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.9.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.9.1",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"better-sqlite3": "^11.5.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.18.1",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-unicorn": "^56.0.1",
"node-cron": "^3.0.3",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
Expand Down
Loading

0 comments on commit 5bd068d

Please sign in to comment.