-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
70
71
72
73
74
75
{
"name": "ardunno-cli-gen",
"version": "0.1.10",
"description": "Generates nice-grpc API for the Arduino CLI",
"keywords": [
"arduino",
"arduino-cli",
"proto",
"grpc",
"nice-grpc"
],
"bugs": {
"url": "https://github.com/dankeboy36/ardunno-cli-gen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dankeboy36/ardunno-cli-gen.git"
},
"license": "MIT",
"author": "dankeboy36",
"exports": {
".": "./dist/index.js",
"./generate": "./dist/generate.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ardunno-cli": "./dist/cli.js"
},
"files": [
"dist",
"!/**/__tests__"
],
"scripts": {
"compile": "tsc -p ./",
"format": "prettier --write .",
"lint": "eslint ./src --ext ts",
"prepublishOnly": "npm run test && npm run compile && npm run lint && npm run format",
"test": "mocha",
"watch": "tsc -p ./ -w"
},
"dependencies": {
"@pingghost/protoc": "^1.0.2",
"commander": "^10.0.1",
"debug": "^4.3.4",
"execa": "^7.1.1",
"globby": "^13.1.4",
"https-proxy-agent": "^5.0.1",
"nice-grpc-common": "^2.0.0",
"protobufjs": "^7.2.3",
"rimraf": "^5.0.1",
"semver": "^7.5.1",
"tmp-promise": "^3.0.3",
"ts-proto": "^1.153.3",
"unzipper": "^0.10.14"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.0",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.13",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.5.3",
"ts-json-schema-generator": "^1.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}