-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.92 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
{
"name": "function-template-typescript",
"version": "0.4.0",
"description": "Template for Crossplane function in Typescript",
"keywords": [
"crossplane",
"typescript",
"kubernetes"
],
"repository": {
"type": "git",
"url": "github.com/crossplane/function-template-typescript"
},
"license": "Apache-2.0",
"author": "Crossplane Authors <info@crossplane.org>",
"type": "module",
"main": "main.js",
"scripts": {
"build": "tsgo",
"clean": "rm -rf dist/* _build/*",
"configuration-xpkg-build": "scripts/configuration-xpkg-build.sh",
"configuration-xpkg-push": "scripts/configuration-xpkg-push.sh",
"function-docker-build": "scripts/function-docker-build.sh",
"function-xpkg-build": "scripts/function-xpkg-build.sh",
"function-xpkg-push": "scripts/function-xpkg-push.sh",
"function-build-all": "npm run function-docker-build && npm run function-xpkg-build && npm run function-xpkg-push",
"local": "node dist/main.js --insecure --debug",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"tsc": "tsc",
"tsgo": "tsgo",
"check-types": "tsgo --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\""
},
"dependencies": {
"@crossplane-org/function-sdk-typescript": "^0.5.0",
"@types/node": "^24.10.1",
"commander": "^12.0.0",
"kubernetes-models": "^4.5.1",
"pino": "^10.1.0",
"typescript": "^5.9.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/glob": "^8.1.0",
"@types/jest": "^30.0.0",
"@typescript/native-preview": "^7.0.0-dev.20251202.1",
"eslint": "^10.0.2",
"glob": "^13.0.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"typescript-eslint": "^8.56.0"
},
"overrides": {
"minimatch": "^10.2.2"
}
}