n8n-nodes-sqlite-wasm 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "n8n-nodes-sqlite-wasm",
3
+ "version": "0.1.1",
4
+ "description": "Read-only SQLite community nodes for n8n using sql.js (WASM).",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/Aodaruma/n8n-nodes-sqlite-wasm",
7
+ "keywords": [
8
+ "n8n-community-node-package",
9
+ "n8n",
10
+ "sqlite",
11
+ "sql.js",
12
+ "wasm",
13
+ "health-connect"
14
+ ],
15
+ "author": { "name": "Aodaruma", "email": "skyblue.1007.sakkyoku@gmail.com" },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/Aodaruma/n8n-nodes-sqlite-wasm.git"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "scripts": {
24
+ "build": "n8n-node build && node scripts/copy-vendor.mjs",
25
+ "build:watch": "tsc --watch",
26
+ "dev": "n8n-node dev",
27
+ "lint": "n8n-node lint",
28
+ "lint:fix": "n8n-node lint --fix",
29
+ "release": "n8n-node release",
30
+ "prepublishOnly": "npm run build",
31
+ "test": "vitest run"
32
+ },
33
+ "files": ["dist"],
34
+ "n8n": {
35
+ "n8nNodesApiVersion": 1,
36
+ "strict": false,
37
+ "nodes": ["dist/nodes/SQLiteWasm/SqliteWasm.node.js"]
38
+ },
39
+ "devDependencies": {
40
+ "@n8n/node-cli": "*",
41
+ "@types/node": "^22.0.0",
42
+ "@types/sql.js": "*",
43
+ "eslint": "9.29.0",
44
+ "prettier": "3.8.3",
45
+ "release-it": "20.2.0",
46
+ "typescript": "5.9.3",
47
+ "vitest": "^4.0.0"
48
+ },
49
+ "peerDependencies": { "n8n-workflow": "*" }
50
+ }