@s0rt/3dvf 0.1.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.
Files changed (2) hide show
  1. package/dist/cli/index.js +10030 -0
  2. package/package.json +32 -0
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@s0rt/3dvf",
3
+ "version": "0.1.0",
4
+ "description": "shadcn-style Three.js function library CLI",
5
+ "type": "module",
6
+ "bin": {
7
+ "3dvf": "./dist/cli/index.js"
8
+ },
9
+ "files": [
10
+ "dist/"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "scripts": {
16
+ "build": "bun build src/cli/index.ts --outdir dist/cli --target node --format esm",
17
+ "build:registry": "bun run scripts/build-registry.ts",
18
+ "serve:registry": "bunx serve public -p 3001",
19
+ "dev": "bun run src/cli/index.ts",
20
+ "test": "bun test"
21
+ },
22
+ "dependencies": {
23
+ "commander": "^12.1.0",
24
+ "ora": "^8.1.1",
25
+ "picocolors": "^1.1.1",
26
+ "prompts": "^2.4.2"
27
+ },
28
+ "devDependencies": {
29
+ "@types/prompts": "^2.4.9",
30
+ "typescript": "^5.7.0"
31
+ }
32
+ }