@sixsevenai/ai-dlc-installer 1.0.0

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,53 @@
1
+ {
2
+ "name": "@sixsevenai/ai-dlc-installer",
3
+ "version": "1.0.0",
4
+ "description": "Interactive terminal installer for the AI-DLC framework",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "sixsevenai": "dist/cli.js"
9
+ },
10
+ "exports": {
11
+ ".": "./dist/index.js"
12
+ },
13
+ "files": [
14
+ "dist/",
15
+ "README.md"
16
+ ],
17
+ "engines": {
18
+ "node": ">=18.0.0"
19
+ },
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "dev": "tsup --watch",
23
+ "typecheck": "tsc --noEmit",
24
+ "lint": "tsc --noEmit",
25
+ "test": "vitest run",
26
+ "test:watch": "vitest",
27
+ "pack:check": "npm pack --dry-run 2>&1",
28
+ "prepublishOnly": "npm run build",
29
+ "verify": "npm run build && npm run typecheck && npm run test && npm run pack:check"
30
+ },
31
+ "keywords": [
32
+ "ai-dlc",
33
+ "installer",
34
+ "cli",
35
+ "sixsevenai",
36
+ "framework"
37
+ ],
38
+ "dependencies": {
39
+ "@clack/prompts": "^0.8.0",
40
+ "chalk": "^5.3.0",
41
+ "figlet": "^1.8.0",
42
+ "gradient-string": "^3.0.0",
43
+ "ora": "^8.1.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/figlet": "^1.7.0",
47
+ "@types/gradient-string": "^1.1.6",
48
+ "@types/node": "^22.0.0",
49
+ "tsup": "^8.3.0",
50
+ "typescript": "^5.7.0",
51
+ "vitest": "^2.1.0"
52
+ }
53
+ }