@contractspec/bundle.alpic 1.57.0 → 1.58.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.
@@ -0,0 +1,7 @@
1
+ // src/index.ts
2
+ import * as module from "@contractspec/module.alpic";
3
+
4
+ export * from "@contractspec/module.alpic";
5
+ export {
6
+ module
7
+ };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,8 @@
1
- import * as module from "@contractspec/module.alpic";
2
- export * from "@contractspec/module.alpic";
3
- export { module };
1
+ /**
2
+ * @contractspec/bundle.alpic
3
+ *
4
+ * Alpic MCP + ChatGPT App hosting helpers.
5
+ */
6
+ export * as module from '@contractspec/module.alpic';
7
+ export * from '@contractspec/module.alpic';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,MAAM,4BAA4B,CAAC;AACrD,cAAc,4BAA4B,CAAC"}
package/dist/index.js CHANGED
@@ -1,5 +1,8 @@
1
+ // @bun
2
+ // src/index.ts
1
3
  import * as module from "@contractspec/module.alpic";
2
4
 
3
- export * from "@contractspec/module.alpic"
4
-
5
- export { module };
5
+ export * from "@contractspec/module.alpic";
6
+ export {
7
+ module
8
+ };
@@ -0,0 +1,7 @@
1
+ // src/index.ts
2
+ import * as module from "@contractspec/module.alpic";
3
+
4
+ export * from "@contractspec/module.alpic";
5
+ export {
6
+ module
7
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/bundle.alpic",
3
- "version": "1.57.0",
3
+ "version": "1.58.0",
4
4
  "description": "Alpic MCP server and ChatGPT App hosting bundle",
5
5
  "keywords": [
6
6
  "contractspec",
@@ -19,34 +19,39 @@
19
19
  "scripts": {
20
20
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
21
21
  "publish:pkg:canary": "bun publish:pkg --tag canary",
22
- "build": "bun build:types && bun build:bundle",
23
- "build:bundle": "tsdown",
24
- "build:types": "tsc --noEmit",
25
- "dev": "bun build:bundle --watch",
22
+ "build": "bun run prebuild && bun run build:bundle && bun run build:types",
23
+ "build:bundle": "contractspec-bun-build transpile",
24
+ "build:types": "contractspec-bun-build types",
25
+ "dev": "contractspec-bun-build dev",
26
26
  "clean": "rimraf dist .turbo",
27
27
  "lint": "bun lint:fix",
28
28
  "lint:fix": "eslint src --fix",
29
29
  "lint:check": "eslint src",
30
- "test": "bun test"
30
+ "test": "bun test",
31
+ "prebuild": "contractspec-bun-build prebuild",
32
+ "typecheck": "tsc --noEmit"
31
33
  },
32
34
  "dependencies": {
33
- "@contractspec/module.alpic": "1.57.0"
35
+ "@contractspec/module.alpic": "1.58.0"
34
36
  },
35
37
  "devDependencies": {
36
- "@contractspec/tool.tsdown": "1.57.0",
37
- "@contractspec/tool.typescript": "1.57.0",
38
- "tsdown": "^0.20.3",
39
- "typescript": "^5.9.3"
38
+ "@contractspec/tool.typescript": "1.58.0",
39
+ "typescript": "^5.9.3",
40
+ "@contractspec/tool.bun": "1.57.0"
40
41
  },
41
42
  "exports": {
42
- ".": "./dist/index.js",
43
- "./*": "./*"
43
+ ".": "./src/index.ts"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public",
47
47
  "exports": {
48
- ".": "./dist/index.js",
49
- "./*": "./*"
48
+ ".": {
49
+ "types": "./dist/index.d.ts",
50
+ "bun": "./dist/index.js",
51
+ "node": "./dist/node/index.mjs",
52
+ "browser": "./dist/browser/index.js",
53
+ "default": "./dist/index.js"
54
+ }
50
55
  },
51
56
  "registry": "https://registry.npmjs.org/"
52
57
  },