n8n-nodes-cronos-paytech 0.1.2

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,63 @@
1
+ {
2
+ "name": "n8n-nodes-cronos-paytech",
3
+ "version": "0.1.2",
4
+ "description": "n8n node for Cronos x402 Agentic Payments",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "homepage": "",
10
+ "author": {
11
+ "name": "Ainun",
12
+ "email": "ai@algo.fit"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/ec2ainun/n8n-nodes-cronos-paytech.git"
17
+ },
18
+ "main": "index.js",
19
+ "scripts": {
20
+ "build": "n8n-node build",
21
+ "dev": "n8n-node dev",
22
+ "format": "prettier --write .",
23
+ "lint": "n8n-node lint",
24
+ "lint:fix": "n8n-node lint --fix",
25
+ "prepublishOnly": "n8n-node prerelease",
26
+ "release": "n8n-node release",
27
+ "test": "jest"
28
+ },
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "n8n": {
33
+ "n8nNodesApiVersion": 1,
34
+ "strict": false,
35
+ "nodes": [
36
+ "dist/nodes/CronosX402/CronosX402.node.js"
37
+ ],
38
+ "credentials": [
39
+ "dist/credentials/CronosWalletCredentialsApi.credentials.js"
40
+ ]
41
+ },
42
+ "devDependencies": {
43
+ "@n8n/node-cli": "^0.18.0",
44
+ "@types/express": "^4.17.6",
45
+ "@types/jest": "^29.5.12",
46
+ "@types/node": "^20.11.24",
47
+ "@types/request-promise-native": "~1.0.15",
48
+ "copyfiles": "^2.4.1",
49
+ "eslint": "^9.0.0",
50
+ "jest": "^29.7.0",
51
+ "n8n-core": "*",
52
+ "prettier": "^3.2.5",
53
+ "ts-jest": "^29.1.2",
54
+ "typescript": "~5.3.3"
55
+ },
56
+ "peerDependencies": {
57
+ "n8n-workflow": "*"
58
+ },
59
+ "dependencies": {
60
+ "@crypto.com/facilitator-client": "^1.0.4",
61
+ "ethers": "^6.11.1"
62
+ }
63
+ }