sim-setup 1.0.0-dev.10.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 ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "sim-setup",
3
+ "version": "1.0.0-dev.10.1",
4
+ "description": "Set up and manage a self-hosted Sim installation",
5
+ "type": "module",
6
+ "bin": {
7
+ "sim-setup": "dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "prebuild": "bun run clean",
11
+ "build": "bun build src/index.ts --target=node --format=esm --packages=bundle --reject-unresolved --outfile=dist/index.js && bun run build:assets",
12
+ "build:assets": "bun run src/build-assets.ts",
13
+ "clean": "bun -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\"",
14
+ "type-check": "tsc --noEmit",
15
+ "lint": "biome check --write --unsafe .",
16
+ "lint:check": "biome check .",
17
+ "format": "biome format --write .",
18
+ "format:check": "biome format .",
19
+ "test": "vitest run",
20
+ "prepublishOnly": "bun run build"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "THIRD_PARTY_LICENSES"
25
+ ],
26
+ "keywords": [
27
+ "sim",
28
+ "self-hosted",
29
+ "docker",
30
+ "compose",
31
+ "setup"
32
+ ],
33
+ "author": "Sim",
34
+ "license": "Apache-2.0",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/simstudioai/sim.git",
38
+ "directory": "packages/sim-setup"
39
+ },
40
+ "homepage": "https://github.com/simstudioai/sim/tree/main/packages/sim-setup#readme",
41
+ "bugs": {
42
+ "url": "https://github.com/simstudioai/sim/issues"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ },
47
+ "engines": {
48
+ "node": ">=20"
49
+ },
50
+ "devDependencies": {
51
+ "@clack/prompts": "1.7.0",
52
+ "@next/env": "16.2.12",
53
+ "@sim/deployment-config": "0.1.0",
54
+ "@sim/security": "0.1.0",
55
+ "@sim/tsconfig": "0.0.0",
56
+ "@sim/utils": "0.1.0",
57
+ "@types/node": "24.2.1",
58
+ "chalk": "5.6.2",
59
+ "postgres": "^3.4.5",
60
+ "typescript": "^7.0.2",
61
+ "vitest": "^4.1.0"
62
+ }
63
+ }