-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.25 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.25 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
{
"name": "@smartthings/core-sdk",
"version": "8.5.0",
"description": "JavaScript/TypeScript library for using SmartThings APIs",
"author": "Samsung Electronics Co., LTD.",
"homepage": "https://github.com/SmartThingsCommunity/smartthings-core-sdk",
"bugs": "https://github.com/SmartThingsCommunity/smartthings-core-sdk/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/SmartThingsCommunity/smartthings-core-sdk.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=22"
},
"files": [
"dist/**/*"
],
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.13.5",
"http-signature": "^1.4.0",
"lodash.isdate": "^4.0.1",
"lodash.isstring": "^4.0.1",
"qs": "^6.15.0",
"sshpk": "^1.18.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.22.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/jest": "^29.5.14",
"@types/lodash.isdate": "^4.0.9",
"@types/lodash.isstring": "^4.0.9",
"@types/node": "^22.19.11",
"@types/qs": "^6.14.0",
"@types/sshpk": "^1.17.4",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.26.1"
},
"scripts": {
"format": "eslint --ext .ts src test --fix",
"lint": "eslint --ext .ts src test",
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"compile": "tsc -b",
"watch": "tsc -b -w",
"build": "npm run clean && npm run compile",
"docs-gen": "typedoc --out docs src/index.ts",
"json-docs-gen": "typedoc --json dist/docs.json src/index.ts",
"version": "changeset version && npm i --package-lock-only && npm run build",
"release": "npm run build && changeset publish"
}
}