-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@tago-io/sdk",
"version": "11.3.3",
"description": "TagoIO SDK for JavaScript in the browser and Node.js",
"author": "TagoIO Inc.",
"homepage": "https://tago.io",
"license": "Apache-2.0",
"repository": "tago-io/sdk-js.git",
"main": "./lib/modules.js",
"types": "./lib/modules.d.ts",
"private": false,
"keywords": [
"tago",
"tagoio",
"iot",
"tago.io",
"sdk",
"analysis",
"device",
"tagoio",
"tago-io"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf ./lib; node updateEnv.js; tsc",
"linter": "eslint .",
"test": "jest",
"monacoTypes": "dts-bundle-generator -o docs/tago-io.sdk.d.ts src/modules.ts",
"docs": "typedoc",
"link": "yalc publish"
},
"devDependencies": {
"@swc/jest": "0.2.36",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.11.28",
"@types/papaparse": "5.3.14",
"@types/qs": "6.9.12",
"@types/socket.io-client": "1.4.36",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"dts-bundle-generator": "9.3.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"express": "4.18.3",
"jest": "29.7.0",
"prettier": "3.2.5",
"typedoc": "0.25.12",
"typedoc-plugin-extras": "3.0.0",
"typedoc-plugin-missing-exports": "2.2.0",
"typescript": "5.4.2"
},
"dependencies": {
"axios": "1.6.8",
"form-data": "4.0.0",
"nanoid": "3.3.7",
"papaparse": "5.4.1",
"qs": "6.12.0",
"socket.io-client": "4.7.5"
},
"optionalDependencies": {
"eventsource": "2.0.2"
}
}