@intechstudio/grid-protocol 1.20240715.737

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.
@@ -0,0 +1,12 @@
1
+ export declare class GridScript {
2
+ static validator: any;
3
+ static splitShortScript(script: string, mode: "short" | "human"): any[];
4
+ static humanize(script: string): string;
5
+ static shortify(script: string): string;
6
+ static typeCheck(type: string, value: string): boolean;
7
+ static splitArrayToString(splitArray: any[], direction: string): string;
8
+ static minifyScript(value: string): any;
9
+ static compressScript(script: string): any;
10
+ static expandScript(script: string): string;
11
+ static checkSyntax(script: string): boolean;
12
+ }
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@intechstudio/grid-protocol",
3
+ "version": "1.20240715.737",
4
+ "description": "Grid protocol descriptors automatically generated from the grid-fw repository!",
5
+ "scripts": {
6
+ "test": "npx patch-package && vitest run",
7
+ "clean": "rm -rf dist",
8
+ "build": "npx patch-package && rollup -c",
9
+ "prepack": "npm run build",
10
+ "prepublishOnly": "npm run build && npm run remove-deps",
11
+ "remove-deps": "node remove-dependencies.js"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/intechstudio/grid-protocol.git"
16
+ },
17
+ "keywords": [
18
+ "intech",
19
+ "studio",
20
+ "grid"
21
+ ],
22
+ "author": "intech studio",
23
+ "bugs": {
24
+ "url": "https://github.com/intechstudio/grid-protocol/issues"
25
+ },
26
+ "homepage": "https://github.com/intechstudio/grid-protocol#readme",
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "main": "dist/index.js",
31
+ "module": "dist/index.js",
32
+ "types": "dist/index.d.ts"
33
+ }