vectorvesper 0.3.3 → 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/README.md +2 -1
- package/dist/index.js +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -17,13 +17,14 @@
|
|
|
17
17
|
|
|
18
18
|
<p align="center">
|
|
19
19
|
<a href="https://www.npmjs.com/package/vectorvesper"><img src="https://img.shields.io/npm/v/vectorvesper?color=7EACB5&label=npm" alt="npm version" /></a>
|
|
20
|
-
<a href="https://www.npmjs.com/package/vectorvesper"><img src="https://img.shields.io/npm/dm/vectorvesper?color=7EACB5&label=downloads" alt="downloads" /></a>
|
|
21
20
|
<a href="https://github.com/vectorvesper/vv-components/blob/main/LICENSE"><img src="https://img.shields.io/github/license/vectorvesper/vv-components?color=7EACB5&label=license" alt="license" /></a>
|
|
22
21
|
<a href="https://vectorvesper.dev"><img src="https://img.shields.io/badge/docs-vectorvesper.dev-7EACB5" alt="docs" /></a>
|
|
23
22
|
</p>
|
|
24
23
|
|
|
25
24
|
---
|
|
26
25
|
|
|
26
|
+
> Vector Vesper is a CLI you run with `npx`, not a package you install. Start with `npx vectorvesper init` below.
|
|
27
|
+
|
|
27
28
|
**Vector Vesper** is a motion toolkit for React consisting of 3D animations, shaders, and advanced motion components.
|
|
28
29
|
|
|
29
30
|
The CLI writes the component code directly into your repository. You have full control over the math, the shaders, and the styles.
|
package/dist/index.js
CHANGED
|
@@ -1305,7 +1305,7 @@ Remove ${slug}
|
|
|
1305
1305
|
import fs9 from "fs";
|
|
1306
1306
|
import path9 from "path";
|
|
1307
1307
|
import pc9 from "picocolors";
|
|
1308
|
-
var CLI_VERSION = true ? "0.
|
|
1308
|
+
var CLI_VERSION = true ? "1.0.0" : "0.0.0-dev";
|
|
1309
1309
|
async function infoCommand() {
|
|
1310
1310
|
console.log(pc9.bold(pc9.cyan("\nVector Vesper Diagnostics\n")));
|
|
1311
1311
|
const projectInfo = detectProject();
|
|
@@ -1603,7 +1603,7 @@ async function whoamiCommand() {
|
|
|
1603
1603
|
}
|
|
1604
1604
|
|
|
1605
1605
|
// src/index.ts
|
|
1606
|
-
var version = true ? "0.
|
|
1606
|
+
var version = true ? "1.0.0" : "0.0.0-dev";
|
|
1607
1607
|
var program = new Command();
|
|
1608
1608
|
program.name("vv").description("Vector Vesper CLI \u2014 add visual components to your React project").version(version).option("--verbose", "Show detailed debug output").hook("preAction", (thisCommand) => {
|
|
1609
1609
|
const opts = thisCommand.opts();
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vectorvesper",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Add WebGL, React Three Fiber & advanced motion components to your project via CLI
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Add WebGL, React Three Fiber & advanced motion components to your project via CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"bin": {
|
|
9
|
+
"vectorvesper": "dist/index.js",
|
|
9
10
|
"vv": "dist/index.js"
|
|
10
11
|
},
|
|
11
12
|
"files": [
|
|
@@ -17,13 +18,12 @@
|
|
|
17
18
|
},
|
|
18
19
|
"repository": {
|
|
19
20
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/vectorvesper/
|
|
21
|
-
"directory": "packages/cli"
|
|
21
|
+
"url": "git+https://github.com/vectorvesper/vv-components.git"
|
|
22
22
|
},
|
|
23
|
-
"homepage": "https://vectorvesper.dev",
|
|
24
23
|
"bugs": {
|
|
25
|
-
"url": "https://github.com/vectorvesper/
|
|
24
|
+
"url": "https://github.com/vectorvesper/vv-components/issues"
|
|
26
25
|
},
|
|
26
|
+
"homepage": "https://vectorvesper.dev",
|
|
27
27
|
"keywords": [
|
|
28
28
|
"react",
|
|
29
29
|
"webgl",
|