2019-10-03 08:53:03 +02:00
|
|
|
{
|
feat: Initial structure for Suno AI n8n node
I've set up the foundational boilerplate for the Suno AI integration.
Key changes include:
- Restructured directories for nodes, credentials, interfaces, utils, tests, and docs.
- Renamed and updated example files to Suno-specific names and conventions (SunoApi.credentials.ts, Suno.node.ts).
- Updated package.json and root README.md for the Suno AI node.
- Created .env.example with placeholders for Suno environment variables.
- Added a dev-log.md with initial notes on authentication research strategy.
- Scaffolded utils/sunoApi.ts with placeholder API functions and JSDoc comments.
- Scaffolded nodes/Suno/Suno.node.ts with operations, properties, execute routing, and a placeholder SVG icon.
- Scaffolded nodes/Suno/SunoTrigger.node.ts with a basic trigger structure and properties.
- Defined initial TypeScript types in interfaces/SunoTypes.ts for common data structures (SunoTrack, SunoJob, etc.).
- Created placeholder README.md files in new subdirectories.
This commit establishes the project structure and lays the groundwork for implementing Suno AI API interactions and node functionality.
2025-05-23 17:03:46 +00:00
|
|
|
"name": "n8n-nodes-suno-ai",
|
2022-06-14 15:35:59 +02:00
|
|
|
"version": "0.1.0",
|
feat: Initial structure for Suno AI n8n node
I've set up the foundational boilerplate for the Suno AI integration.
Key changes include:
- Restructured directories for nodes, credentials, interfaces, utils, tests, and docs.
- Renamed and updated example files to Suno-specific names and conventions (SunoApi.credentials.ts, Suno.node.ts).
- Updated package.json and root README.md for the Suno AI node.
- Created .env.example with placeholders for Suno environment variables.
- Added a dev-log.md with initial notes on authentication research strategy.
- Scaffolded utils/sunoApi.ts with placeholder API functions and JSDoc comments.
- Scaffolded nodes/Suno/Suno.node.ts with operations, properties, execute routing, and a placeholder SVG icon.
- Scaffolded nodes/Suno/SunoTrigger.node.ts with a basic trigger structure and properties.
- Defined initial TypeScript types in interfaces/SunoTypes.ts for common data structures (SunoTrack, SunoJob, etc.).
- Created placeholder README.md files in new subdirectories.
This commit establishes the project structure and lays the groundwork for implementing Suno AI API interactions and node functionality.
2025-05-23 17:03:46 +00:00
|
|
|
"description": "n8n node for Suno AI music generation",
|
2022-06-14 15:35:59 +02:00
|
|
|
"keywords": [
|
|
|
|
|
"n8n-community-node-package"
|
|
|
|
|
],
|
2022-06-17 13:51:26 -07:00
|
|
|
"license": "MIT",
|
2022-08-02 15:18:09 +02:00
|
|
|
"homepage": "",
|
2022-06-14 15:35:59 +02:00
|
|
|
"author": {
|
2022-08-02 15:18:09 +02:00
|
|
|
"name": "",
|
|
|
|
|
"email": ""
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2022-08-02 15:18:09 +02:00
|
|
|
"url": "https://github.com/<...>/n8n-nodes-<...>.git"
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
2024-07-04 19:44:50 +02:00
|
|
|
"engines": {
|
2025-05-13 14:26:01 +01:00
|
|
|
"node": ">=20.15"
|
2024-07-04 19:44:50 +02:00
|
|
|
},
|
2022-06-14 15:35:59 +02:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2022-06-27 11:52:17 +02:00
|
|
|
"build": "tsc && gulp build:icons",
|
2022-06-27 11:57:31 +02:00
|
|
|
"dev": "tsc --watch",
|
2022-06-27 11:45:26 +02:00
|
|
|
"format": "prettier nodes credentials --write",
|
2022-12-29 17:56:02 +01:00
|
|
|
"lint": "eslint nodes credentials package.json",
|
|
|
|
|
"lintfix": "eslint nodes credentials package.json --fix",
|
2025-05-13 14:26:01 +01:00
|
|
|
"prepublishOnly": "npm build && npm lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
2022-06-14 15:35:59 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"n8n": {
|
2022-07-11 14:30:25 +02:00
|
|
|
"n8nNodesApiVersion": 1,
|
2022-06-14 15:35:59 +02:00
|
|
|
"credentials": [
|
feat: Initial structure for Suno AI n8n node
I've set up the foundational boilerplate for the Suno AI integration.
Key changes include:
- Restructured directories for nodes, credentials, interfaces, utils, tests, and docs.
- Renamed and updated example files to Suno-specific names and conventions (SunoApi.credentials.ts, Suno.node.ts).
- Updated package.json and root README.md for the Suno AI node.
- Created .env.example with placeholders for Suno environment variables.
- Added a dev-log.md with initial notes on authentication research strategy.
- Scaffolded utils/sunoApi.ts with placeholder API functions and JSDoc comments.
- Scaffolded nodes/Suno/Suno.node.ts with operations, properties, execute routing, and a placeholder SVG icon.
- Scaffolded nodes/Suno/SunoTrigger.node.ts with a basic trigger structure and properties.
- Defined initial TypeScript types in interfaces/SunoTypes.ts for common data structures (SunoTrack, SunoJob, etc.).
- Created placeholder README.md files in new subdirectories.
This commit establishes the project structure and lays the groundwork for implementing Suno AI API interactions and node functionality.
2025-05-23 17:03:46 +00:00
|
|
|
"dist/credentials/SunoApi.credentials.js"
|
2019-10-03 08:53:03 +02:00
|
|
|
],
|
2022-06-14 15:35:59 +02:00
|
|
|
"nodes": [
|
feat: Initial structure for Suno AI n8n node
I've set up the foundational boilerplate for the Suno AI integration.
Key changes include:
- Restructured directories for nodes, credentials, interfaces, utils, tests, and docs.
- Renamed and updated example files to Suno-specific names and conventions (SunoApi.credentials.ts, Suno.node.ts).
- Updated package.json and root README.md for the Suno AI node.
- Created .env.example with placeholders for Suno environment variables.
- Added a dev-log.md with initial notes on authentication research strategy.
- Scaffolded utils/sunoApi.ts with placeholder API functions and JSDoc comments.
- Scaffolded nodes/Suno/Suno.node.ts with operations, properties, execute routing, and a placeholder SVG icon.
- Scaffolded nodes/Suno/SunoTrigger.node.ts with a basic trigger structure and properties.
- Defined initial TypeScript types in interfaces/SunoTypes.ts for common data structures (SunoTrack, SunoJob, etc.).
- Created placeholder README.md files in new subdirectories.
This commit establishes the project structure and lays the groundwork for implementing Suno AI API interactions and node functionality.
2025-05-23 17:03:46 +00:00
|
|
|
"dist/nodes/Suno/Suno.node.js"
|
2022-06-14 15:35:59 +02:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-05-13 14:26:01 +01:00
|
|
|
"@typescript-eslint/parser": "~8.32.0",
|
|
|
|
|
"eslint": "^8.57.0",
|
|
|
|
|
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
|
|
|
"gulp": "^5.0.0",
|
|
|
|
|
"prettier": "^3.5.3",
|
|
|
|
|
"typescript": "^5.8.2"
|
2024-05-02 11:47:31 +02:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"n8n-workflow": "*"
|
2022-06-14 15:35:59 +02:00
|
|
|
}
|
2025-05-13 14:26:01 +01:00
|
|
|
}
|