@seeka-labs/cli-apps 3.9.18 → 3.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +24384 -2064
- package/dist/init-template.zip +0 -0
- package/package.json +5 -3
package/dist/init-template.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeka-labs/cli-apps",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Seeka - Apps CLI",
|
|
6
6
|
"author": "SEEKA <platform@seeka.co>",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"watch": "tsc -w",
|
|
35
35
|
"clean": "rimraf dist",
|
|
36
36
|
"dev": "yarn run clean && yarn build && rimraf seeka-app-test1 && node dist/index.cjs init seeka-app-test1 --template azure-function --email 'dev@seeka.co' --developer Seeka --noDependencies --browser --npmUsername testy --npmPassword passworddd --env 'SEEKA_APP_ID=123' 'SEEKA_APP_SECRET=345' --packageManager yarn",
|
|
37
|
-
"scaffold:azurefunc": "yarn run clean && yarn build && rimraf test-scaffold/test-azurefunc && node dist/index.cjs init test-azurefunc test-orgname --template azure-function --email 'dev@seeka.co' --developer Seeka --noDependencies --outDir '../../../../../test-app-scaffold' --env 'SEEKA_APP_ID=123' 'SEEKA_APP_SECRET=345' --force --npmUsername internal-seeka-developers-apps --npmPassword
|
|
37
|
+
"scaffold:azurefunc": "yarn run clean && yarn build && rimraf test-scaffold/test-azurefunc && node dist/index.cjs init test-azurefunc test-orgname --template azure-function --email 'dev@seeka.co' --developer Seeka --noDependencies --outDir '../../../../../test-app-scaffold' --env 'SEEKA_APP_ID=123' 'SEEKA_APP_SECRET=345' --force --npmUsername internal-seeka-developers-apps --npmPassword $INTERNAL_NPM_PASSWORD",
|
|
38
38
|
"scaffold:azurefunc:fromfile:public": "yarn run clean && yarn build && node dist/index.cjs init ./configs/azurefunc/testapp-public.seeka.cli.config.json",
|
|
39
39
|
"scaffold:azurefunc:fromfile:internal": "yarn run clean && yarn build && node dist/index.cjs init ./configs/azurefunc/testapp-internal.seeka.cli.config.json",
|
|
40
40
|
"scaffold:azurefunc:kim": "yarn run clean && yarn build && node dist/index.cjs init ./configs/azurefunc/kim-experiment.seeka.cli.config.json",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"dev:skipSubDir2": "yarn run clean && yarn build && cd seeka-app-test2 && node ../dist/index.cjs init seeka-app-test1 --template azure-function --skipSubDir --email 'dev@seeka.co' --developer Seeka --noDependencies --browser --env 'SEEKA_APP_ID=123' 'SEEKA_APP_SECRET=345' --packageManager yarn"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@anthropic-ai/sdk": "^0.88.0",
|
|
48
49
|
"@azure/storage-blob": "^12",
|
|
49
50
|
"@jest/globals": "^30",
|
|
50
51
|
"@types/cross-spawn": "^6",
|
|
@@ -68,7 +69,8 @@
|
|
|
68
69
|
"source-map-support": "^0",
|
|
69
70
|
"ts-jest": "^29",
|
|
70
71
|
"ts-node": "^10",
|
|
71
|
-
"typescript": "^5"
|
|
72
|
+
"typescript": "^5",
|
|
73
|
+
"zod": "^4.3.6"
|
|
72
74
|
},
|
|
73
75
|
"gitHead": "38e60f9f71d1a34a9a74ca9d5aba69aa675c1095"
|
|
74
76
|
}
|