@sudobility/shapeshyft_types 1.0.0 → 1.0.1
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 +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/shapeshyft_types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "TypeScript types for ShapeShyft API - LLM structured output platform",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "bun run build:esm && bun run build:cjs",
|
|
17
|
-
"build:esm": "tsc -p tsconfig.esm.json",
|
|
18
|
-
"build:cjs": "tsc -p tsconfig.cjs.json && bun run build:cjs-rename",
|
|
17
|
+
"build:esm": "bunx tsc -p tsconfig.esm.json",
|
|
18
|
+
"build:cjs": "bunx tsc -p tsconfig.cjs.json && bun run build:cjs-rename",
|
|
19
19
|
"build:cjs-rename": "find dist -name '*.js' -not -name '*.cjs' -exec sh -c 'cp \"$1\" \"${1%.js}.cjs\"' _ {} \\;",
|
|
20
20
|
"clean": "rm -rf dist",
|
|
21
|
-
"dev": "tsc --watch",
|
|
22
|
-
"typecheck": "tsc --noEmit",
|
|
23
|
-
"lint": "eslint src/",
|
|
24
|
-
"lint:fix": "eslint src/ --fix",
|
|
25
|
-
"format": "prettier --write \"src/**/*.ts\"",
|
|
26
|
-
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
21
|
+
"dev": "bunx tsc --watch",
|
|
22
|
+
"typecheck": "bunx tsc --noEmit",
|
|
23
|
+
"lint": "bunx eslint src/",
|
|
24
|
+
"lint:fix": "bunx eslint src/ --fix",
|
|
25
|
+
"format": "bunx prettier --write \"src/**/*.ts\"",
|
|
26
|
+
"format:check": "bunx prettier --check \"src/**/*.ts\"",
|
|
27
27
|
"verify": "bun run typecheck && bun run lint && bun run build",
|
|
28
28
|
"prepublishOnly": "bun run clean && bun run verify"
|
|
29
29
|
},
|