Skip to content

Commit 356e092

Browse files
committed
chore: wip
1 parent cf48b33 commit 356e092

File tree

6 files changed

+156
-2
lines changed

6 files changed

+156
-2
lines changed

bun.lockb

6.55 KB
Binary file not shown.

storage/framework/cloud/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"author": "Chris Breuer",
77
"license": "MIT",
88
"funding": "https://github.com/sponsors/chrisbbreuer",
9-
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/cloud#readme",
9+
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/cloud#readme",
1010
"repository": {
1111
"type": "git",
1212
"url": "git+https://github.com/stacksjs/stacks.git",
13-
"directory": "./storage/framework/core/cloud"
13+
"directory": "./storage/framework/cloud"
1414
},
1515
"bugs": {
1616
"url": "https://github.com/stacksjs/stacks/issues"

storage/framework/server/package.json

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"name": "stacks-server",
3+
"type": "module",
4+
"version": "0.58.60",
5+
"description": "The Stacks server.",
6+
"author": "Chris Breuer",
7+
"license": "MIT",
8+
"funding": "https://github.com/sponsors/chrisbbreuer",
9+
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/server",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/stacksjs/stacks.git",
13+
"directory": "./storage/framework/server"
14+
},
15+
"bugs": {
16+
"url": "https://github.com/stacksjs/stacks/issues"
17+
},
18+
"keywords": [
19+
"cloud",
20+
"serverless",
21+
"infrastructure as code",
22+
"automation",
23+
"aws",
24+
"stacks"
25+
],
26+
"exports": {
27+
".": {
28+
"bun": "./src/index.ts",
29+
"import": "./dist/index.js"
30+
},
31+
"./*": {
32+
"bun": "./src/*",
33+
"import": "./dist/*"
34+
}
35+
},
36+
"module": "dist/index.js",
37+
"types": "dist/index.d.ts",
38+
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
39+
"files": ["README.md", "dist", "src"],
40+
"scripts": {
41+
"bootstrap": "npx cdk bootstrap",
42+
"deploy": "cd .. && bun run build && cd ./docs && bun run build && cd ../cloud && npx cdk deploy --require-approval never",
43+
"dev": "./dev local",
44+
"dev:cloud": "docker run -d -p 3000:3000 stacks",
45+
"build": "bun build.ts"
46+
},
47+
"peerDependencies": {
48+
"@aws-sdk/client-bedrock": "^3.624.0",
49+
"@aws-sdk/client-cloudformation": "^3.624.0",
50+
"@aws-sdk/client-cloudfront": "^3.624.0",
51+
"@aws-sdk/client-cloudwatch-logs": "^3.624.0",
52+
"@aws-sdk/client-ec2": "^3.627.0",
53+
"@aws-sdk/client-efs": "^3.624.0",
54+
"@aws-sdk/client-iam": "^3.624.0",
55+
"@aws-sdk/client-lambda": "^3.624.0",
56+
"@aws-sdk/client-route-53-domains": "^3.624.0",
57+
"@aws-sdk/client-s3": "^3.627.0",
58+
"@aws-sdk/client-ses": "^3.624.0",
59+
"@aws-sdk/client-sesv2": "^3.624.0",
60+
"@aws-sdk/client-ssm": "^3.624.0",
61+
"@stacksjs/config": "workspace:*",
62+
"@stacksjs/env": "workspace:*",
63+
"@stacksjs/logging": "workspace:*",
64+
"@stacksjs/path": "workspace:*",
65+
"@stacksjs/router": "workspace:*",
66+
"@stacksjs/storage": "workspace:*",
67+
"@stacksjs/strings": "workspace:*",
68+
"@stacksjs/utils": "workspace:*",
69+
"@stacksjs/validation": "workspace:*"
70+
},
71+
"dependencies": {
72+
"@aws-sdk/client-bedrock": "^3.624.0",
73+
"@aws-sdk/client-cloudformation": "^3.624.0",
74+
"@aws-sdk/client-cloudfront": "^3.624.0",
75+
"@aws-sdk/client-cloudwatch-logs": "^3.624.0",
76+
"@aws-sdk/client-dynamodb": "3.624.0",
77+
"@aws-sdk/client-ec2": "^3.627.0",
78+
"@aws-sdk/client-efs": "^3.624.0",
79+
"@aws-sdk/client-iam": "^3.624.0",
80+
"@aws-sdk/client-lambda": "^3.624.0",
81+
"@aws-sdk/client-route-53-domains": "^3.624.0",
82+
"@aws-sdk/client-s3": "^3.627.0",
83+
"@aws-sdk/client-ses": "^3.624.0",
84+
"@aws-sdk/client-sesv2": "^3.624.0",
85+
"@aws-sdk/client-ssm": "^3.624.0",
86+
"@stacksjs/queue": "workspace:*",
87+
"@stacksjs/config": "workspace:*",
88+
"@stacksjs/dns": "workspace:*",
89+
"@stacksjs/logging": "workspace:*",
90+
"@stacksjs/path": "workspace:*",
91+
"@stacksjs/router": "workspace:*",
92+
"@stacksjs/storage": "workspace:*",
93+
"@stacksjs/utils": "workspace:*",
94+
"@stacksjs/validation": "workspace:*",
95+
"aws-cdk": "^2.151.0",
96+
"aws-cdk-lib": "^2.151.0",
97+
"aws4fetch": "^1.0.19",
98+
"constructs": "^10.3.0"
99+
},
100+
"devDependencies": {
101+
"@stacksjs/cli": "workspace:*",
102+
"@stacksjs/development": "workspace:*",
103+
"@stacksjs/env": "workspace:*",
104+
"source-map-support": "^0.5.21"
105+
},
106+
"workspaces": ["core/*"]
107+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"compilerOptions": {
3+
"incremental": true,
4+
"target": "esnext",
5+
"jsx": "preserve",
6+
"lib": ["esnext"],
7+
"moduleDetection": "force",
8+
"baseUrl": ".",
9+
"module": "esnext",
10+
"moduleResolution": "bundler",
11+
"paths": {
12+
"@stacksjs/*": ["./storage/framework/core/*/src"],
13+
"stacks/*": ["./storage/framework/core/*/src"],
14+
"buddy": ["./storage/framework/core/buddy/src/index.ts"],
15+
"buddy/*": ["./storage/framework/core/buddy/src/*"],
16+
"Actions/*": ["./app/Actions/*"],
17+
"Jobs/*": ["./app/Jobs/*"],
18+
"~/*": ["./*"],
19+
"../../../env": ["./storage/framework/env.ts"]
20+
},
21+
"resolveJsonModule": true,
22+
"types": [
23+
"vite/client",
24+
// "vue/ref-macros",
25+
"vite-plugin-pages/client",
26+
"vite-plugin-pwa/client",
27+
"vite-plugin-vue-layouts/client",
28+
"@intlify/unplugin-vue-i18n/messages"
29+
],
30+
"allowImportingTsExtensions": true,
31+
"allowJs": true,
32+
"strict": true,
33+
"strictNullChecks": true,
34+
"noUncheckedIndexedAccess": true,
35+
"noUnusedLocals": true,
36+
"declaration": true,
37+
"declarationMap": true,
38+
"emitDeclarationOnly": true,
39+
"outDir": "./dist/types",
40+
"allowSyntheticDefaultImports": true,
41+
"esModuleInterop": true,
42+
"forceConsistentCasingInFileNames": true,
43+
"isolatedModules": true,
44+
"skipLibCheck": true
45+
},
46+
"include": ["./*.ts", "./*.d.ts"]
47+
}

0 commit comments

Comments
 (0)