-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "rust-runtime",
"version": "0.1.0",
"type": "module",
"bin": {
"rust-runtime": "bin/rust-runtime.js"
},
"scripts": {
"build": "tsc && cd lambda && cargo build",
"clean": "tsc --build --clean && cd lambda && cargo clean",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"postupdate": "cd lambda && cargo update"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^24.12.0",
"@vitest/eslint-plugin": "^1.6.13",
"aws-cdk": "^2.1114.1",
"dotenv": "^17.3.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-promise": "^7.2.1",
"jiti": "^2.6.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.1.2"
},
"dependencies": {
"aws-cdk-lib": "^2.245.0",
"cargo-lambda-cdk": "^0.0.35",
"constructs": "^10.6.0"
}
}