a reactive (signals based) hypermedia web framework (wip)
stormlightlabs.github.io/volt/
hypermedia
frontend
signals
1{
2 "name": "create-voltx",
3 "version": "0.1.0",
4 "description": "CLI for creating and managing VoltX.js applications",
5 "type": "module",
6 "author": "Owais Jamil",
7 "license": "MIT",
8 "repository": { "type": "git", "url": "https://github.com/stormlightlabs/volt.git", "directory": "cli" },
9 "bin": { "create-voltx": "./dist/index.js", "voltx": "./dist/index.js" },
10 "files": ["dist", "templates"],
11 "main": "./dist/index.js",
12 "module": "./dist/index.js",
13 "types": "./dist/index.d.ts",
14 "exports": { ".": "./dist/index.js", "./package.json": "./package.json" },
15 "scripts": {
16 "build": "tsdown",
17 "dev": "tsdown --watch",
18 "test": "vitest",
19 "test:run": "vitest run",
20 "typecheck": "tsc --noEmit"
21 },
22 "devDependencies": { "tsdown": "^0.15.6", "@vitest/coverage-v8": "^3.2.4" },
23 "dependencies": { "chalk": "^5.6.2", "commander": "^14.0.1", "@inquirer/prompts": "^8.0.1" },
24 "keywords": ["voltx", "reactive", "framework", "cli", "scaffold", "create"]
25}