@twick/visualizer 0.14.8 → 0.14.9

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 CHANGED
@@ -1,26 +1,32 @@
1
1
  {
2
2
  "name": "@twick/visualizer",
3
- "version": "0.14.8",
3
+ "version": "0.14.9",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "scripts": {
6
6
  "start": "twick editor --projectFile ./src/live.tsx",
7
7
  "build": "tsc && vite build",
8
8
  "docs": "typedoc --out docs src/visualizer-grouped.ts",
9
- "clean": "rimraf .turbo node_modules dist"
9
+ "clean": "rimraf .turbo node_modules dist",
10
+ "prepublishOnly": "pnpm run build"
10
11
  },
12
+ "files": [
13
+ "dist",
14
+ "src",
15
+ "README.md"
16
+ ],
11
17
  "publishConfig": {
12
18
  "access": "public"
13
19
  },
14
20
  "dependencies": {
15
21
  "@preact/signals": "^1.2.1",
16
- "@twick/2d": "0.14.8",
17
- "@twick/core": "0.14.8",
18
- "@twick/renderer": "0.14.8",
19
- "@twick/vite-plugin": "0.14.8",
22
+ "@twick/2d": "0.14.9",
23
+ "@twick/core": "0.14.9",
24
+ "@twick/renderer": "0.14.9",
25
+ "@twick/vite-plugin": "0.14.9",
20
26
  "date-fns": "^4.1.0",
21
27
  "preact": "^10.19.2",
22
28
  "crelt": "^1.0.6",
23
- "@twick/media-utils": "0.14.8"
29
+ "@twick/media-utils": "0.14.9"
24
30
  },
25
31
  "devDependencies": {
26
32
  "@twick/cli": "0.14.0",
package/.eslintrc.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "root": true,
3
- "extends": [
4
- "eslint:recommended",
5
- "plugin:@typescript-eslint/recommended"
6
- ],
7
- "parser": "@typescript-eslint/parser",
8
- "plugins": ["@typescript-eslint"],
9
- "parserOptions": {
10
- "ecmaVersion": "latest",
11
- "sourceType": "module"
12
- },
13
- "env": {
14
- "es2022": true,
15
- "node": true
16
- },
17
- "rules": {
18
- "@typescript-eslint/no-explicit-any": "warn",
19
- "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
20
- }
21
- }
package/package.json.bak DELETED
@@ -1,34 +0,0 @@
1
- {
2
- "name": "@twick/visualizer",
3
- "version": "0.14.8",
4
- "license": "SEE LICENSE IN LICENSE.md",
5
- "scripts": {
6
- "start": "twick editor --projectFile ./src/live.tsx",
7
- "build": "tsc && vite build",
8
- "docs": "typedoc --out docs src/visualizer-grouped.ts",
9
- "clean": "rimraf .turbo node_modules dist"
10
- },
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "dependencies": {
15
- "@preact/signals": "^1.2.1",
16
- "@twick/2d": "0.14.8",
17
- "@twick/core": "0.14.8",
18
- "@twick/renderer": "0.14.8",
19
- "@twick/vite-plugin": "0.14.8",
20
- "date-fns": "^4.1.0",
21
- "preact": "^10.19.2",
22
- "crelt": "^1.0.6",
23
- "@twick/media-utils": "0.14.8"
24
- },
25
- "devDependencies": {
26
- "@twick/cli": "0.14.0",
27
- "@twick/ui": "0.14.0",
28
- "typescript": "5.4.2",
29
- "typedoc": "^0.25.8",
30
- "typedoc-plugin-markdown": "^3.17.1",
31
- "vite-plugin-dts": "^3.7.3",
32
- "vite": "^5.4.21"
33
- }
34
- }
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "extends": "@twick/2d/tsconfig.project.json",
3
- "include": ["src"],
4
- "compilerOptions": {
5
- "noEmit": false,
6
- "outDir": "dist",
7
- "module": "CommonJS",
8
- "skipLibCheck": true,
9
- "jsx": "react-jsx"
10
- }
11
- }
package/typedoc.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "$schema": "https://typedoc.org/schema.json",
3
- "entryPoints": ["./src/visualizer-grouped.ts"],
4
- "out": "docs",
5
- "name": "@twick/visualizer",
6
- "excludePrivate": true,
7
- "excludeProtected": true,
8
- "excludeExternals": true,
9
- "theme": "default",
10
- "readme": "README.md",
11
- "plugin": ["typedoc-plugin-markdown"],
12
- "categorizeByGroup": true,
13
- "categoryOrder": ["Core", "FadeAnimation", "RiseAnimation", "BlurAnimation", "BreatheAnimation", "SuccessionAnimation", "PhotoRiseAnimation", "PhotoZoomAnimation", "VideoElement", "ImageElement", "AudioElement", "TextElement", "CaptionElement", "RectElement", "CircleElement", "IconElement", "SceneElement", "TypewriterEffect", "StreamWordEffect", "ElasticEffect", "EraseEffect", "CircleFrameEffect", "RectFrameEffect", "Types", "Interfaces", "Other"],
14
- "hideBreadcrumbs": true,
15
- "groupOrder": ["Core", "FadeAnimation", "RiseAnimation", "BlurAnimation", "BreatheAnimation", "SuccessionAnimation", "PhotoRiseAnimation", "PhotoZoomAnimation", "VideoElement", "ImageElement", "AudioElement", "TextElement", "CaptionElement", "RectElement", "CircleElement", "IconElement", "SceneElement", "TypewriterEffect", "StreamWordEffect", "ElasticEffect", "EraseEffect", "CircleFrameEffect", "RectFrameEffect", "Types", "Interfaces", "Other"],
16
- "sort": ["source-order"],
17
- "defaultCategory": "Other",
18
- "hideInPageTOC": false,
19
- "includeVersion": true
20
- }
package/vite.config.ts DELETED
@@ -1,15 +0,0 @@
1
- import { defineConfig } from "vite";
2
- import motionCanvas from '@twick/vite-plugin';
3
-
4
- export default defineConfig({
5
- plugins: [motionCanvas()],
6
- build: {
7
- rollupOptions: {
8
- output: {
9
- entryFileNames: '[name].js',
10
- chunkFileNames: '[name].js',
11
- assetFileNames: '[name].[ext]'
12
- }
13
- }
14
- }
15
- });