@m14i/sith 1.3.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.
@@ -0,0 +1 @@
1
+ {"name":"ink","version":"7.0.3","description":"React for CLI","license":"MIT","repository":"vadimdemedes/ink","author":{"name":"Vadim Demedes","email":"vadimdemedes@hey.com","url":"https://github.com/vadimdemedes"},"type":"module","exports":{"types":"./build/index.d.ts","default":"./build/index.js"},"engines":{"node":">=22"},"scripts":{"dev":"tsc --watch","build":"tsc","prepare":"npm run build","test":"npm run typecheck && npm run lint && FORCE_COLOR=true ava","lint":"xo","format":"prettier --write .","typecheck":"tsc --noEmit","example":"NODE_NO_WARNINGS=1 node --import=tsx","benchmark":"NODE_NO_WARNINGS=1 node --import=tsx","inspect":"react-devtools"},"files":["build"],"keywords":["react","cli","jsx","stdout","components","command-line","preact","redux","print","render","colors","text"],"dependencies":{"@alcalzone/ansi-tokenize":"^0.3.0","ansi-escapes":"^7.3.0","ansi-styles":"^6.2.3","auto-bind":"^5.0.1","chalk":"^5.6.2","cli-boxes":"^4.0.1","cli-cursor":"^4.0.0","cli-truncate":"^6.0.0","code-excerpt":"^4.0.0","es-toolkit":"^1.45.1","indent-string":"^5.0.0","is-in-ci":"^2.0.0","patch-console":"^2.0.0","react-reconciler":"^0.33.0","scheduler":"^0.27.0","signal-exit":"^3.0.7","slice-ansi":"^9.0.0","stack-utils":"^2.0.6","string-width":"^8.2.0","terminal-size":"^4.0.1","type-fest":"^5.5.0","widest-line":"^6.0.0","wrap-ansi":"^10.0.0","ws":"^8.20.0","yoga-layout":"~3.2.1"},"devDependencies":{"@faker-js/faker":"^10.4.0","@sindresorhus/tsconfig":"^8.1.0","@sinonjs/fake-timers":"^15.3.0","@types/ms":"^2.1.0","@types/node":"^25.5.2","@types/react":"^19.2.14","@types/react-reconciler":"^0.33.0","@types/scheduler":"^0.26.0","@types/signal-exit":"^3.0.0","@types/sinon":"^21.0.1","@types/stack-utils":"^2.0.3","@types/ws":"^8.18.1","@vdemedes/prettier-config":"^2.0.1","ava":"^7.0.0","boxen":"^8.0.1","delay":"^7.0.0","ms":"^2.1.3","node-pty":"^1.2.0-beta.12","p-queue":"^9.1.2","prettier":"^3.8.1","react":"^19.2.4","react-devtools":"^7.0.1","react-devtools-core":"^7.0.1","react-router":"^7.14.0","sinon":"^21.0.3","strip-ansi":"^7.2.0","tsx":"^4.21.0","typescript":"^5.8.3","xo":"^1.2.3"},"peerDependencies":{"@types/react":">=19.2.0","react":">=19.2.0","react-devtools-core":">=6.1.2"},"peerDependenciesMeta":{"@types/react":{"optional":true},"react-devtools-core":{"optional":true}},"ava":{"workerThreads":false,"serial":true,"files":["test/**/*","!test/helpers/**/*","!test/fixtures/**/*"],"extensions":{"ts":"module","tsx":"module"},"nodeArguments":["--import=tsx"]},"prettier":"@vdemedes/prettier-config"}
@@ -0,0 +1,11 @@
1
+ export interface MenuItem {
2
+ label: string;
3
+ value: string;
4
+ icon: string;
5
+ }
6
+ export interface BuildingSpinnerProps {
7
+ step: string;
8
+ }
9
+ export interface DockerCommandOptions {
10
+ build?: boolean;
11
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"","sourceRoot":"","sources":["file:///home/runner/work/sith/sith/src/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,oBAAoB;IACnC,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB"}
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@m14i/sith",
3
+ "version": "1.3.1",
4
+ "description": "Turn your context to the dark side. Standardize and share your OpenCode setup with a fully dockerized environment, designed for seamless collaboration and CI integration.",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/MerzoukeMansouri/sith.git"
9
+ },
10
+ "bin": {
11
+ "sith": "./dist/index.js"
12
+ },
13
+ "scripts": {
14
+ "build": "ncc build src/index.ts -o dist --minify && rm -rf dist/assets && cp -r assets dist/",
15
+ "dev": "tsx src/index.ts",
16
+ "dev:build": "pnpm build && node dist/index.js",
17
+ "dev:shell": "pnpm build && node dist/index.js shell",
18
+ "typecheck": "tsc --noEmit",
19
+ "clean": "rm -rf dist",
20
+ "prepublishOnly": "pnpm build"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "assets"
25
+ ],
26
+ "keywords": [
27
+ "opencode",
28
+ "docker",
29
+ "ci",
30
+ "automation",
31
+ "cli",
32
+ "nix"
33
+ ],
34
+ "author": "",
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "@inquirer/prompts": "^5.0.0",
38
+ "chalk": "^5.3.0",
39
+ "commander": "^12.1.0",
40
+ "execa": "^9.0.0",
41
+ "ink": "^7.0.3",
42
+ "react": "^19.2.6"
43
+ },
44
+ "devDependencies": {
45
+ "@semantic-release/changelog": "^6.0.3",
46
+ "@semantic-release/git": "^10.0.1",
47
+ "@semantic-release/github": "^11.0.1",
48
+ "@semantic-release/npm": "^12.0.1",
49
+ "@types/node": "^20.12.7",
50
+ "@types/react": "^19.2.14",
51
+ "@vercel/ncc": "^0.38.1",
52
+ "semantic-release": "^24.2.0",
53
+ "tsx": "^4.7.2",
54
+ "typescript": "^5.4.5"
55
+ },
56
+ "engines": {
57
+ "node": ">=18"
58
+ }
59
+ }