@platformatic/basic 2.0.0-alpha.10

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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@platformatic/basic",
3
+ "version": "2.0.0-alpha.10",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/platformatic/platformatic.git"
10
+ },
11
+ "author": "Paolo Insogna <paolo@cowtech.it>",
12
+ "license": "Apache-2.0",
13
+ "bugs": {
14
+ "url": "https://github.com/platformatic/platformatic/issues"
15
+ },
16
+ "homepage": "https://github.com/platformatic/platformatic#readme",
17
+ "dependencies": {
18
+ "@fastify/error": "^4.0.0",
19
+ "execa": "^9.3.1",
20
+ "pino": "^9.3.2",
21
+ "pino-abstract-transport": "^2.0.0",
22
+ "semver": "^7.6.3",
23
+ "split2": "^4.2.0",
24
+ "undici": "^6.19.5",
25
+ "ws": "^8.18.0",
26
+ "@platformatic/config": "2.0.0-alpha.10",
27
+ "@platformatic/itc": "2.0.0-alpha.10",
28
+ "@platformatic/utils": "2.0.0-alpha.10"
29
+ },
30
+ "devDependencies": {
31
+ "borp": "^0.17.0",
32
+ "eslint": "9",
33
+ "express": "^4.19.2",
34
+ "fastify": "5.0.0-alpha.4",
35
+ "json-schema-to-typescript": "^15.0.0",
36
+ "neostandard": "^0.11.1",
37
+ "next": "^14.2.5",
38
+ "react": "^18.3.1",
39
+ "react-dom": "^18.3.1",
40
+ "typescript": "^5.5.4",
41
+ "vite": "^5.4.0",
42
+ "@platformatic/service": "2.0.0-alpha.10",
43
+ "@platformatic/composer": "2.0.0-alpha.10"
44
+ },
45
+ "scripts": {
46
+ "gen-schema": "node lib/schema.js > schema.json",
47
+ "gen-types": "json2ts > config.d.ts < schema.json",
48
+ "build": "pnpm run gen-schema && pnpm run gen-types",
49
+ "lint": "eslint"
50
+ }
51
+ }
package/schema.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/basic/2.0.0-alpha.10.json",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "title": "Platformatic Stackable",
5
+ "type": "object",
6
+ "properties": {
7
+ "$schema": {
8
+ "type": "string"
9
+ }
10
+ },
11
+ "additionalProperties": true
12
+ }