@twick/create 0.12.0 → 0.14.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/index.js +5 -5
- package/package.json +11 -11
package/index.js
CHANGED
|
@@ -11,15 +11,15 @@ import prompts from 'prompts';
|
|
|
11
11
|
const templates = [
|
|
12
12
|
{
|
|
13
13
|
value: 'default',
|
|
14
|
-
title: 'Minimal, standalone
|
|
15
|
-
description: 'A minimal example to get started with
|
|
14
|
+
title: 'Minimal, standalone Twick project',
|
|
15
|
+
description: 'A minimal example to get started with Twick.',
|
|
16
16
|
recommended: true,
|
|
17
17
|
startcommands: 'default',
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
value: 'saas-template',
|
|
21
|
-
title: '
|
|
22
|
-
description: 'A minimal web app built with
|
|
21
|
+
title: 'Twick with Next.js',
|
|
22
|
+
description: 'A minimal web app built with Twick and Next.js.',
|
|
23
23
|
recommended: true,
|
|
24
24
|
startcommands: 'readme',
|
|
25
25
|
},
|
|
@@ -69,7 +69,7 @@ const templates = [
|
|
|
69
69
|
{
|
|
70
70
|
value: 'three-js-example',
|
|
71
71
|
title: 'Three.js Example',
|
|
72
|
-
description: 'Integrate Three.js with
|
|
72
|
+
description: 'Integrate Three.js with Twick for 3D animations.',
|
|
73
73
|
startcommands: 'default',
|
|
74
74
|
},
|
|
75
75
|
{
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twick/create",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Quickly scaffold twick projects",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "twick",
|
|
7
7
|
"homepage": "https://re.video/",
|
|
8
|
-
"bugs": "https://github.com/
|
|
8
|
+
"bugs": "https://github.com/ncounterspecialist/twick-base/issues",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"bin": {
|
|
@@ -17,20 +17,20 @@
|
|
|
17
17
|
],
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/ncounterspecialist/twick-base.git"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@twick/2d": "^0.
|
|
24
|
-
"@twick/core": "^0.
|
|
25
|
-
"@twick/ffmpeg": "^0.
|
|
26
|
-
"@twick/renderer": "^0.
|
|
27
|
-
"@twick/ui": "^0.
|
|
28
|
-
"@twick/vite-plugin": "^0.
|
|
23
|
+
"@twick/2d": "^0.14.0",
|
|
24
|
+
"@twick/core": "^0.14.0",
|
|
25
|
+
"@twick/ffmpeg": "^0.14.0",
|
|
26
|
+
"@twick/renderer": "^0.14.0",
|
|
27
|
+
"@twick/ui": "^0.14.0",
|
|
28
|
+
"@twick/vite-plugin": "^0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@twick/telemetry": "^0.
|
|
31
|
+
"@twick/telemetry": "^0.14.0",
|
|
32
32
|
"minimist": "^1.2.8",
|
|
33
33
|
"prompts": "^2.4.2"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "54bd58bf80ea6afec48c27c061e6d455c1e0a885"
|
|
36
36
|
}
|