-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 KB
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
70
71
72
73
74
75
{
"name": "@tago-io/sdk",
"version": "12.2.2",
"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",
"type": "module",
"main": "./lib/modules.cjs",
"module": "./lib/modules.js",
"types": "./lib/modules.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/modules.d.ts",
"default": "./lib/modules.js"
},
"require": {
"types": "./lib/modules.d.cts",
"default": "./lib/modules.cjs"
}
}
},
"private": false,
"keywords": [
"tago",
"tagoio",
"iot",
"tago.io",
"sdk",
"analysis",
"device",
"tagoio",
"tago-io"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf ./lib; node updateEnv.cjs; tsdown",
"publish:npm": "npm publish",
"publish:jsr": "deno publish",
"publish:all": "npm run publish:npm && npm run publish:jsr",
"linter": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "vitest",
"monacoTypes": "dts-bundle-generator --project tsconfig.monaco.json -o docs/tago-io.sdk.d.ts src/modules.ts",
"docs": "typedoc",
"link": "yalc publish"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@types/node": "22.15.25",
"@types/papaparse": "5.3.16",
"@types/qs": "6.14.0",
"dts-bundle-generator": "9.5.1",
"msw": "2.10.4",
"tsdown": "0.13.1",
"typedoc": "0.28.9",
"typedoc-plugin-missing-exports": "4.0.0",
"typescript": "5.8.3",
"vitest": "3.2.4"
},
"dependencies": {
"nanoid": "5.1.5",
"papaparse": "5.5.3",
"qs": "6.14.0"
},
"optionalDependencies": {
"eventsource": "4.0.0"
}
}