@saasquatch/program-boilerplate 3.10.0 → 3.10.1-0

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 CHANGED
@@ -1,22 +1,29 @@
1
1
  {
2
2
  "name": "@saasquatch/program-boilerplate",
3
- "version": "3.10.0",
3
+ "version": "3.10.1-0",
4
4
  "description": "Boilerplate for writing programs",
5
5
  "main": "dist/index.js",
6
6
  "files": [
7
7
  "dist/"
8
8
  ],
9
+ "engines": {
10
+ "node": "^18 || ^20 || ^22"
11
+ },
9
12
  "scripts": {
10
13
  "build": "tsc --declaration",
11
14
  "build:docs": "typedoc --out ./docs ./src --ignoreCompilerErrors --media assets --hideGenerator",
12
- "format": "prettier \"src/**/*.js\" --write",
13
- "prepush": "npm run format",
14
- "prepare": "npm run build",
15
- "deploy": "np",
15
+ "prepublishOnly": "if [ \"$CI\" != \"true\" ]; then echo Error: Publishing manually is not supported. Please use the GitHub action. && exit 1; fi",
16
+ "prepack": "npm run build",
16
17
  "test": "SSQT_LOG_LEVEL=emerg jest"
17
18
  },
18
19
  "author": "ReferralSaaSquatch.com, Inc.",
19
20
  "license": "MIT",
21
+ "repository": {
22
+ "url": "https://github.com/saasquatch/program-tools"
23
+ },
24
+ "publishConfig": {
25
+ "provenance": true
26
+ },
20
27
  "resolutions": {
21
28
  "source-map": "^0.7.4"
22
29
  },
package/dist/buh.d.ts DELETED
@@ -1 +0,0 @@
1
- export {};
package/dist/buh.js DELETED
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const jsonata_1 = require("./jsonata");
4
- function main() {
5
- console.log(jsonata_1.safeJsonata("", {}));
6
- }
7
- main();