@replit/protocol 0.4.18-luke-is-ent.0 → 0.4.19
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/README.md +4 -4
- package/gen.sh +11 -1
- package/iotester/index.d.ts +38258 -1769
- package/iotester/index.js +95975 -4227
- package/jsdoc.js +0 -0
- package/main/index.d.ts +5867 -5977
- package/main/index.js +17481 -17061
- package/package.json +7 -8
- package/pnpm-workspace.yaml +6 -0
package/package.json
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@replit/protocol",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.19",
|
|
4
4
|
"description": "JavaScript bindings for the Replit protocol",
|
|
5
5
|
"main": "main/index.js",
|
|
6
6
|
"author": "eng@replit.com",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"prepublishOnly": "npm run build",
|
|
9
|
-
"build": "npm run build:main && npm run build:iotester",
|
|
10
|
-
"build:iotester": "TARGET='./iotester/index' ./gen.sh nofix ../../cmd/io-tester/lib/api/api.proto",
|
|
11
|
-
"build:main": "TARGET='./main/index' ./gen.sh fix ../types.proto ../client.proto ../signing.proto ../token/token.proto ../lore/lore.proto ../lore/service.proto ../features/features.proto ../repl/repl.proto ../powerup.proto ../chamber/chamber.proto"
|
|
12
|
-
},
|
|
13
7
|
"dependencies": {
|
|
14
8
|
"protobufjs": "^7.2.5"
|
|
15
9
|
},
|
|
16
10
|
"devDependencies": {
|
|
17
11
|
"protobufjs-cli": "^1.1.2"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "pnpm run build:main && pnpm run build:iotester",
|
|
15
|
+
"build:iotester": "TARGET='./iotester/index' ./gen.sh nofix ../../cmd/io-tester/lib/api/api.proto",
|
|
16
|
+
"build:main": "TARGET='./main/index' ./gen.sh fix"
|
|
18
17
|
}
|
|
19
|
-
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# This setting is intended to minimize the impact of supply-chain attacks.
|
|
2
|
+
# In most cases, malicious releases are discovered within an hour, so
|
|
3
|
+
# three days sounds safe.
|
|
4
|
+
# If you need to immediately import something new (e.g. a security bugfix),
|
|
5
|
+
# use the `minimumReleaseAgeExclude` to allow that package.
|
|
6
|
+
minimumReleaseAge: 4320
|