@gvnrdao/dh-lit-actions 0.0.11 → 0.0.13

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.
Files changed (1) hide show
  1. package/package.json +12 -4
package/package.json CHANGED
@@ -1,10 +1,16 @@
1
1
  {
2
2
  "name": "@gvnrdao/dh-lit-actions",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "description": "Diamond Hands Protocol LIT Actions - Deterministic, Auditable Builds",
6
- "main": "pkg-dist/index.js",
7
- "types": "pkg-dist/index.d.ts",
6
+ "main": "./pkg-dist/index.cjs",
7
+ "types": "./pkg-dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "require": "./pkg-dist/index.cjs",
11
+ "types": "./pkg-dist/index.d.ts"
12
+ }
13
+ },
8
14
  "files": [
9
15
  "pkg-dist/**/*"
10
16
  ],
@@ -14,7 +20,8 @@
14
20
  "clean:all": "npm run clean && npm run clean:pkg",
15
21
  "sync:deployments": "node scripts/sync-deployments.cjs",
16
22
  "prebuild": "npm run sync:deployments",
17
- "build": "node --loader ts-node/esm scripts/build-actions.ts",
23
+ "build": "node --loader ts-node/esm scripts/build-actions-bundled.ts",
24
+ "build:old": "node --loader ts-node/esm scripts/build-actions.ts",
18
25
  "build:pkg": "tsc -p tsconfig.pkg.json",
19
26
  "build:package": "rm -rf pkg-dist && tsc -p tsconfig.pkg.json",
20
27
  "minify": "node --loader ts-node/esm scripts/minify-actions.ts",
@@ -44,6 +51,7 @@
44
51
  "@types/fs-extra": "11.0.4",
45
52
  "@types/jest": "^29.5.14",
46
53
  "@types/node": "20.17.6",
54
+ "esbuild": "^0.25.11",
47
55
  "jest": "^29.7.0",
48
56
  "terser": "5.36.0",
49
57
  "ts-jest": "^29.4.1",