@papert-code/papert-code 0.3.3 → 0.3.5
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/LICENSE +1 -1
- package/README.md +7 -0
- package/dist/cli.js +129129 -115954
- package/package.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papert-code/papert-code",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -17,11 +17,13 @@
|
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"start": "cross-env node scripts/start.js",
|
|
20
|
+
"start:a2a-server": "node scripts/start_a2a_server.js",
|
|
20
21
|
"debug": "cross-env DEBUG=1 node --inspect-brk scripts/start.js",
|
|
21
22
|
"auth:npm": "npx google-artifactregistry-auth",
|
|
22
23
|
"auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
|
|
23
24
|
"auth": "npm run auth:npm && npm run auth:docker",
|
|
24
25
|
"generate": "node scripts/generate-git-commit-info.js",
|
|
26
|
+
"generate:settings-schema": "node --import tsx scripts/generate-settings-schema.ts",
|
|
25
27
|
"build": "node scripts/build.js",
|
|
26
28
|
"build-and-start": "npm run build && npm run start",
|
|
27
29
|
"build:vscode": "node scripts/build_vscode_companion.js",
|