-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.8 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.8 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@smartthings/cli",
"version": "2.1.0",
"description": "Command Line Interface for the SmartThings APIs",
"keywords": [
"smartthings",
"cli"
],
"homepage": "https://github.com/SmartThingsCommunity/smartthings-cli",
"author": "Samsung Electronics Co., LTD.",
"bugs": {
"url": "https://github.com/SmartThingsCommunity/smartthings-cli/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/SmartThingsCommunity/smartthings-cli.git"
},
"files": [
"bin",
"dist/src",
"dist/tsconfig.tsbuildinfo",
"README.md",
"package.json",
"/npm-shrinkwrap.json",
"!*/src/build-tools",
"!*/src/__tests__"
],
"main": "./dist/src/index.js",
"bin": {
"smartthings": "dist/src/run.js"
},
"exports": {
".": "./dist/src/index.js",
"./*": "./dist/src/lib/*.js",
"./commands/list": "./dist/src/commands/index.js"
},
"engines": {
"node": ">=24.8.0",
"npm": ">=11.4.2"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"dependencies": {
"@aws-sdk/client-lambda": "^3.994.0",
"@inquirer/prompts": "^7.8.6",
"@smartthings/core-sdk": "^8.5.0",
"axios": "1.13.5",
"chalk": "^5.6.2",
"env-paths": "^3.0.0",
"eventsource": "^4.1.0",
"express": "^5.2.1",
"get-port-please": "^3.2.0",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"lodash.at": "^4.6.0",
"log4js": "^6.9.1",
"open": "^11.0.0",
"ora": "^8.2.0",
"os-locale": "^8.0.0",
"picomatch": "^4.0.3",
"qs": "^6.15.0",
"table": "^6.9.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"undici": "^7.22.0",
"uuid": "^13.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@changesets/release-utils": "^0.2.6",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/archiver": "^7.0.0",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash.at": "^4.6.9",
"@types/node": "^24.6.0",
"@types/picomatch": "^4.0.2",
"@types/qs": "^6.14.0",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vercel/ncc": "^0.38.4",
"archiver": "^7.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^5.0.3",
"jest-html-reporters": "^3.1.7",
"mock-stdin": "^1.0.0",
"nexe": "^5.0.0-beta.4",
"rimraf": "^6.1.3",
"strip-ansi": "^7.1.2",
"ts-jest": "^29.3.4",
"typescript": "^5.9.3"
},
"scripts": {
"lint": "eslint --ext ts src",
"format": "eslint --ext ts src --fix",
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"full-clean": "rimraf dist_bin && rimraf coverage && rimraf jest*html* && npm run clean && rimraf node_modules",
"compile": "tsc",
"readme": "tsx dist/src/build-tools/update-readme.js",
"watch": "tsc -w --sourceMap",
"build": "npm run clean && npm run compile && npm run readme",
"debug-build": "npm run clean && tsc --sourceMap && npm run readme",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test-watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --reporters=default",
"test-coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage=true",
"prepack": "tsc && npm run readme",
"version": "npm run build && npm run readme && git add README.md && changeset version && npm i --package-lock-only && npm run compile",
"release": "npm run build && changeset publish",
"package": "tsx src/build-tools/build-binaries.ts"
},
"directories": {
"doc": "doc"
}
}