-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.81 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
{
"name": "@science-corporation/synapse",
"version": "2.3.3",
"description": "Client library and CLI for the Synapse API",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
}
},
"files": [
"dist",
"scripts",
"src",
"synapse-api"
],
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "rimraf dist src/api",
"dist": "npm run generate && npm run build",
"generate": "bash ./scripts/generate.sh",
"lint": "tsc --noEmit && eslint .",
"postinstall": "bash ./scripts/postinstall.sh && npm run dist",
"test": "tsc --noEmit && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciencecorp/synapse-typescript.git"
},
"author": {
"name": "Science Corporation",
"email": "team@science.xyz"
},
"bugs": {
"url": "https://github.com/sciencecorp/synapse-typescript/issues"
},
"homepage": "https://github.com/sciencecorp/synapse-typescript#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.5.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.5",
"typescript": "^5.5.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.10",
"@grpc/proto-loader": "^0.7.13",
"google-protobuf": "^3.21.2",
"long": "^5.3.1",
"protobufjs-cli": "^1.1.3",
"tmp": "^0.2.5",
"yargs": "^17.7.2"
}
}