-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.77 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
74
75
76
77
{
"name": "@surrealdb/n8n-nodes-surrealdb",
"version": "0.6.0",
"description": "n8n node to connect to SurrealDB",
"keywords": [
"n8n-community-node-package",
"surrealdb",
"n8n"
],
"license": "MIT",
"homepage": "https://n8n.io",
"author": {
"name": "David Whatley"
},
"contributors": [
{
"name": "David Whatley"
},
{
"name": "Tobie Morgan Hitchcock"
}
],
"repository": {
"type": "git",
"url": "https://github.com/surrealdb/n8n-nodes-surrealdb"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc && npm run assets",
"assets": "cp src/nodes/SurrealDb/*.svg src/nodes/SurrealDb/*.png dist/nodes/SurrealDb/ 2>/dev/null || true",
"dev": "tsc --watch",
"lint": "eslint src",
"format": "prettier src --write",
"prepublishOnly": "npm run build",
"n8n": "node ./node_modules/n8n/bin/n8n"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/SurrealDbApi.credentials.js"
],
"nodes": [
"dist/nodes/SurrealDb/SurrealDb.node.js"
]
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/request-promise-native": "^1.0.21",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"n8n": "^1.105.3",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.82.0",
"prettier": "^3.6.2",
"typescript": "~5.9.2"
},
"dependencies": {
"ajv": "^8.18.0",
"surrealdb": "^2.0.3"
},
"prettier": {
"semi": true,
"tabWidth": 4,
"singleQuote": false,
"trailingComma": "all",
"arrowParens": "avoid"
}
}