-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 3.26 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
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
{
"name": "@cloudquery/plugin-sdk-javascript",
"version": "0.1.22",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/tsconfig.tsbuildinfo",
"!dist/**/*.map"
],
"type": "module",
"exports": {
"./arrow": "./dist/arrow/arrow.js",
"./plugin/plugin": "./dist/plugin/plugin.js",
"./plugin/serve": "./dist/plugin/serve.js",
"./scheduler": "./dist/scheduler/scheduler.js",
"./schema/table": "./dist/schema/table.js",
"./schema/column": "./dist/schema/column.js",
"./schema/resolvers": "./dist/schema/resolvers.js",
"./types/*": "./dist/types/*.js"
},
"scripts": {
"dev": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/main.ts",
"build": "rm -rf dist && tsc",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "eslint --max-warnings 0 --ext .ts src",
"lint:fix": "eslint --max-warnings 0 --ext .ts --fix src",
"test": "ava --timeout=10m"
},
"description": "This is the high-level package to use for developing CloudQuery plugins in JavaScript",
"keywords": [
"nodejs",
"javascript",
"CloudQuery",
"CQ",
"ETL",
"data",
"plugin",
"data extraction",
"data engineering"
],
"license": "MPL-2.0",
"homepage": "https://github.com/cloudquery/plugin-sdk-javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudquery/plugin-sdk-javascript.git"
},
"bugs": {
"url": "https://github.com/cloudquery/plugin-sdk-javascript/issues"
},
"author": "cloudquery (https://github.com/cloudquery)",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@tsconfig/node20": "^20.1.2",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"ava": "^6.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"prettier": "^3.0.1",
"tempy": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
},
"main": "index.js",
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"dependencies": {
"@apache-arrow/esnext-esm": "^18.0.0",
"@cloudquery/plugin-pb-javascript": "^0.0.30",
"@grpc/grpc-js": "^1.9.0",
"@types/luxon": "^3.3.1",
"ajv": "^8.12.0",
"boolean": "^3.2.0",
"dot-prop": "^9.0.0",
"execa": "^9.0.0",
"luxon": "^3.4.0",
"matcher": "^5.0.0",
"modern-errors": "^7.0.0",
"modern-errors-bugs": "^5.0.0",
"p-map": "^7.0.0",
"p-timeout": "^6.1.2",
"path-exists": "^5.0.0",
"path-type": "^6.0.0",
"semver": "^7.5.4",
"uuid": "^11.0.0",
"winston": "^3.10.0",
"winston-error-format": "^3.0.0",
"yargs": "^17.7.2"
}
}