-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.22 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.22 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
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
114
115
116
{
"name": "@cloudquery/plugin-sdk-javascript",
"version": "0.1.35",
"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 src",
"lint:fix": "eslint --max-warnings 0 --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": "^6.0.0",
"@tsconfig/node22": "^22.0.0",
"@types/semver": "^7.5.8",
"@types/uuid": "^11.0.0",
"@types/yargs": "^17.0.24",
"ava": "^7.0.0",
"@eslint/js": "^10.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-ava": "^16.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"typescript-eslint": "^8.0.0",
"prettier": "^3.0.1",
"tempy": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^6.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"main": "index.js",
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"dependencies": {
"@apache-arrow/esnext-esm": "^21.0.0",
"@cloudquery/plugin-pb-javascript": "^0.0.40",
"@grpc/grpc-js": "^1.9.0",
"@types/luxon": "^3.3.1",
"ajv": "^8.12.0",
"boolean": "^3.2.0",
"dot-prop": "^10.0.0",
"execa": "^9.0.0",
"luxon": "^3.4.0",
"matcher": "^6.0.0",
"modern-errors": "^7.0.0",
"modern-errors-bugs": "^5.0.0",
"p-map": "^7.0.0",
"p-queue": "^9.0.0",
"p-timeout": "^7.0.0",
"path-exists": "^5.0.0",
"path-type": "^6.0.0",
"semver": "^7.5.4",
"uuid": "^13.0.0",
"winston": "^3.10.0",
"winston-error-format": "^3.0.0",
"yargs": "^18.0.0"
},
"overrides": {
"@vercel/nft": "1.5.0"
},
"packageManager": "pnpm@10.33.0"
}