@intella/cli 0.0.6 → 0.0.7

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 (3) hide show
  1. package/bin/intella.js +326588 -0
  2. package/package.json +6 -5
  3. package/tsconfig.json +0 -36
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@intella/cli",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Intella CLI",
5
5
  "type": "module",
6
6
  "bin": {
7
- "intella": "./dist/index.js"
7
+ "intella": "./dist/index.js",
8
+ "intella-cli": "./bin/intella.js"
8
9
  },
9
10
  "scripts": {
10
11
  "clean": "rm -rf dist bin",
11
- "build": "export NODE_ENV=production && bun run clean && bun run ./scripts/build.ts",
12
+ "build": "export NODE_ENV=production && bun run clean && bun run ./scripts/build.ts && cp dist/index.js bin/intella.js",
12
13
  "build:binary": "bun build --compile --minify index.ts --outfile bin/intella",
13
14
  "build:prod": "bun run ./scripts/build-prod.ts",
14
15
  "prepublishOnly": "bun run build",
@@ -16,9 +17,9 @@
16
17
  },
17
18
  "files": [
18
19
  "dist",
20
+ "bin/intella.js",
19
21
  "index.js",
20
- "*.js",
21
- "*.json"
22
+ "*.js"
22
23
  ],
23
24
  "dependencies": {
24
25
  "@intella/sdk": "0.0.5",
package/tsconfig.json DELETED
@@ -1,36 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- // Enable latest features
4
- "lib": ["ESNext", "DOM"],
5
- "target": "ESNext",
6
- "module": "ESNext",
7
- "moduleDetection": "force",
8
- "jsx": "react-jsx",
9
- "allowJs": true,
10
-
11
- // Bundler mode
12
- "moduleResolution": "bundler",
13
- "allowImportingTsExtensions": true,
14
- "verbatimModuleSyntax": true,
15
- "noEmit": true,
16
-
17
- // Best practices
18
- "strict": true,
19
- "skipLibCheck": true,
20
- "noFallthroughCasesInSwitch": true,
21
-
22
- // Some stricter flags (disabled by default)
23
- "noUnusedLocals": false,
24
- "noUnusedParameters": false,
25
- "noPropertyAccessFromIndexSignature": false
26
- },
27
- "exclude": [
28
- "node_modules",
29
- "dist",
30
- "**/*.test.ts",
31
- "**/*.spec.ts",
32
- ],
33
- "ts-node": {
34
- "esm": true
35
- }
36
- }