@n8n-dev/n8n-nodes-nasa-gov-apod 1.0.0
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/README.md +97 -0
- package/dist/banner.svg +248 -0
- package/dist/credentials/NasaGovApodApi.credentials.d.ts +9 -0
- package/dist/credentials/NasaGovApodApi.credentials.js +49 -0
- package/dist/credentials/NasaGovApodApi.credentials.js.map +1 -0
- package/dist/icons/nasa-gov-apod.dark.svg +18 -0
- package/dist/icons/nasa-gov-apod.svg +18 -0
- package/dist/nodes/NasaGovApod/NasaGovApod.node.d.ts +4 -0
- package/dist/nodes/NasaGovApod/NasaGovApod.node.js +54 -0
- package/dist/nodes/NasaGovApod/NasaGovApod.node.js.map +1 -0
- package/dist/nodes/NasaGovApod/NasaGovApod.node.json +20 -0
- package/dist/nodes/NasaGovApod/nasa-gov-apod.dark.svg +18 -0
- package/dist/nodes/NasaGovApod/nasa-gov-apod.svg +18 -0
- package/dist/nodes/NasaGovApod/resources/index.d.ts +1 -0
- package/dist/nodes/NasaGovApod/resources/index.js +6 -0
- package/dist/nodes/NasaGovApod/resources/index.js.map +1 -0
- package/dist/nodes/NasaGovApod/resources/request-tag/index.d.ts +2 -0
- package/dist/nodes/NasaGovApod/resources/request-tag/index.js +129 -0
- package/dist/nodes/NasaGovApod/resources/request-tag/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@n8n-dev/n8n-nodes-nasa-gov-apod",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "This endpoint structures the APOD imagery and associated metadata so that it can be repurposed for other applications. In addition, if the concept_tags parameter is set to True, then keywords deriv..",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://n8n-code.github.io/n8n-dev/#/n8n-nodes-nasa-gov-apod",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"n8n",
|
|
9
|
+
"n8n-community-node",
|
|
10
|
+
"n8n-node",
|
|
11
|
+
"n8n-community-node-package",
|
|
12
|
+
"openapi",
|
|
13
|
+
"swagger",
|
|
14
|
+
"api",
|
|
15
|
+
"automation",
|
|
16
|
+
"workflow",
|
|
17
|
+
"nasa-gov-apod"
|
|
18
|
+
],
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "kelvinzer0",
|
|
21
|
+
"email": ""
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/n8n-code/n8n-nodes-nasa-gov-apod.git"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "n8n-node build",
|
|
29
|
+
"build:watch": "tsc --watch",
|
|
30
|
+
"dev": "n8n-node dev",
|
|
31
|
+
"lint": "n8n-node lint",
|
|
32
|
+
"lint:fix": "n8n-node lint --fix",
|
|
33
|
+
"release": "n8n-node release",
|
|
34
|
+
"prepublishOnly": "npm run build"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist"
|
|
38
|
+
],
|
|
39
|
+
"n8n": {
|
|
40
|
+
"n8nNodesApiVersion": 1,
|
|
41
|
+
"strict": true,
|
|
42
|
+
"credentials": [
|
|
43
|
+
"dist/credentials/NasaGovApodApi.credentials.js"
|
|
44
|
+
],
|
|
45
|
+
"nodes": [
|
|
46
|
+
"dist/nodes/NasaGovApod/NasaGovApod.node.js"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"n8n-workflow": "*"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@n8n/node-cli": "*",
|
|
54
|
+
"eslint": "*",
|
|
55
|
+
"prettier": "3.8.3",
|
|
56
|
+
"release-it": "20.2.0",
|
|
57
|
+
"typescript": "5.9.3"
|
|
58
|
+
},
|
|
59
|
+
"peerDependencies": {
|
|
60
|
+
"n8n-workflow": "*"
|
|
61
|
+
}
|
|
62
|
+
}
|