-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 KB
/
package.json
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
{
"name": "n8n-nodes-steam",
"version": "0.4.0",
"description": "Use the Steam Web API in your n8n workflows",
"keywords": [
"n8n-community-node-package",
"steam",
"steam web api"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Dhaya",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dhayab/n8n-nodes-steam.git"
},
"main": "index.js",
"scripts": {
"build": "ttsc && gulp build:icons",
"dev": "ttsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json",
"release": "shipjs prepare"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/SteamApi.credentials.js"
],
"nodes": [
"dist/nodes/Steam/Steam.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-core": "*",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"shipjs": "0.25.1",
"ttypescript": "^1.5.15",
"typescript": "~4.8.4",
"typescript-transform-paths": "^3.4.6"
}
}