-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
{
"name": "ardunno-cli",
"version": "0.1.9",
"description": "nice-grpc API for the Arduino CLI",
"license": "MIT",
"author": "dankeboy36",
"repository": {
"type": "git",
"url": "git+https://github.com/dankeboy36/ardunno-cli.git"
},
"bugs": {
"url": "https://github.com/dankeboy36/ardunno-cli/issues"
},
"type": "module",
"exports": {
".": "./dist/api/index.js",
"./api": "./dist/api/index.js",
"./config": "./dist/config/index.js"
},
"main": "./dist/api/index.js",
"files": [
"dist",
"schemas"
],
"scripts": {
"compile": "tsc -p ./",
"format": "prettier --write . && prettier-package-json --write ./package.json",
"generate:api": "ardunno-cli generate v1.0.4 -o src/api -f && ctix single -p ./tsconfig.json -o ./src/api/api.ts -w && replace-in-files --string ' type ' --replacement '' ./src/api/index.ts",
"generate:config": "node ./scripts/getSchema.js v1.0.4 && json2ts --input ./schemas/arduino-cli-schema.json --output ./src/config/index.ts --no-format --no-additionalProperties",
"lint": "eslint ./src --ext ts",
"prepublishOnly": "npm run generate:api && npm run generate:config && npm run format && npm run compile && npm run lint",
"watch": "tsc -p ./ -w"
},
"dependencies": {
"nice-grpc-common": "^2.0.2",
"protobufjs": "^7.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"ardunno-cli-gen": "^0.1.7",
"ctix": "^1.8.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ipull": "^3.8.0",
"json-schema-to-typescript": "^13.0.1",
"prettier": "^2.8.8",
"prettier-package-json": "^2.8.0",
"replace-in-files-cli": "^2.2.0",
"semver": "^7.6.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"keywords": [
"arduino",
"arduino-cli",
"grpc",
"nice-grpc",
"proto"
],
"typesVersions": {
"*": {
"api": [
"dist/api/index.d.ts"
],
"config": [
"dist/config/index.d.ts"
]
}
}
}