-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.74 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.74 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
{
"name": "codemaker-sdk",
"version": "2.30.0",
"description": "CodeMaker SDK for JavaScript",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"proto:prepare": "mkdir -p dist",
"proto": "grpc_tools_node_protoc --js_out=import_style=commonjs,binary:dist --grpc_out=grpc_js:dist src/sdk/proto/codemakerai.proto",
"proto-types": "protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=grpc_js:. src/sdk/proto/codemakerai.proto",
"prepare": "npm run build",
"compile": "tsc -p ./",
"build": "npm run proto:prepare && npm run proto && npm run proto-types && npm run compile && npm run copy-files",
"copy-files": "copyfiles -f src/sdk/proto/codemakerai.proto ./dist/src/sdk/proto",
"test": "npm run compile && mocha",
"lint": "eslint src --ext ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemakerai/codemaker-sdk-js.git"
},
"keywords": [
"codemakerai",
"ai",
"sdk"
],
"author": "CodeMaker AI Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemakerai/codemaker-sdk-js/issues"
},
"homepage": "https://github.com/codemakerai/codemaker-sdk-js#readme",
"dependencies": {
"@grpc/grpc-js": "^1.13.2",
"google-protobuf": "^3.21.4"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^5.2.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"grpc_tools_node_protoc_ts": "^5.3.3",
"grpc-tools": "^1.13.0",
"mocha": "^10.8.2",
"sinon": "^18.0.1",
"typescript": "^5.8.2"
}
}