-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "@crossplane-org/function-sdk-typescript",
"version": "0.5.0",
"description": "A Crossplane Function SDK for Typescript",
"keywords": [
"crossplane",
"kubernetes",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/crossplane/function-sdk-typescript"
},
"license": "Apache-2.0",
"author": "Steven Borrelli",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"clean": "scripts/clean.sh",
"protoc-gen": "scripts/protoc-gen.sh",
"build": "npx tsc",
"pack": "npm pack",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\""
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"google-protobuf": "^4.0.1",
"kubernetes-models": "^4.5.1",
"pino": "^10.1.0",
"ts-deepmerge": "^7.0.3",
"ts-proto": "^2.10.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/google-protobuf": "^3.15.12",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^10.0.2",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.16"
}
}