@within-7/minto 0.0.13 → 0.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@within-7/minto",
3
- "version": "0.0.13",
3
+ "version": "0.1.1",
4
4
  "bin": {
5
5
  "minto": "cli.js",
6
6
  "mt": "cli.js"
@@ -25,6 +25,22 @@
25
25
  "scripts/postinstall.js",
26
26
  ".npmrc"
27
27
  ],
28
+ "scripts": {
29
+ "dev": "bun run ./src/entrypoints/cli.tsx --verbose",
30
+ "build": "node scripts/build.mjs",
31
+ "clean": "rm -rf cli.js",
32
+ "prepublishOnly": "node scripts/build.mjs && node scripts/prepublish-check.js",
33
+ "postinstall": "node scripts/postinstall.js || true",
34
+ "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
35
+ "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
36
+ "lint": "eslint . --ext .ts,.tsx,.js --max-warnings 0",
37
+ "lint:fix": "eslint . --ext .ts,.tsx,.js --fix",
38
+ "test": "cd tests && bun test",
39
+ "typecheck": "tsc --noEmit",
40
+ "prepare": "",
41
+ "publish:dev": "node scripts/publish-dev.js",
42
+ "publish:release": "node scripts/publish-release.js"
43
+ },
28
44
  "dependencies": {
29
45
  "@anthropic-ai/bedrock-sdk": "^0.12.6",
30
46
  "@anthropic-ai/sdk": "^0.39.0",
@@ -95,19 +111,5 @@
95
111
  "strip-ansi": "6.0.1",
96
112
  "formdata-node": "^6.0.3",
97
113
  "node-domexception": "npm:domexception@^4.0.0"
98
- },
99
- "scripts": {
100
- "dev": "bun run ./src/entrypoints/cli.tsx --verbose",
101
- "build": "node scripts/build.mjs",
102
- "clean": "rm -rf cli.js",
103
- "postinstall": "node scripts/postinstall.js || true",
104
- "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
105
- "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
106
- "lint": "eslint . --ext .ts,.tsx,.js --max-warnings 0",
107
- "lint:fix": "eslint . --ext .ts,.tsx,.js --fix",
108
- "test": "cd tests && bun test",
109
- "typecheck": "tsc --noEmit",
110
- "publish:dev": "node scripts/publish-dev.js",
111
- "publish:release": "node scripts/publish-release.js"
112
114
  }
113
115
  }
package/.npmrc DELETED
@@ -1,3 +0,0 @@
1
- # Minto npm configuration
2
- package-lock=false
3
- save-exact=true