locusing 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.
@@ -0,0 +1,14 @@
1
+ import {
2
+ Morphing,
3
+ MoveToTarget,
4
+ ReplacementTransform,
5
+ Transform,
6
+ TransformMatchingShapes
7
+ } from "./chunk-2THKOSBL.mjs";
8
+ export {
9
+ Morphing,
10
+ MoveToTarget,
11
+ ReplacementTransform,
12
+ Transform,
13
+ TransformMatchingShapes
14
+ };
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "locusing",
3
+ "version": "0.1.0",
4
+ "description": "A declarative graphics and animation library for mathematical visualization",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup src/index.ts --format esm,cjs --dts",
22
+ "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
23
+ "test": "vitest",
24
+ "playground": "pnpm --filter @locusing/playground dev",
25
+ "prepublishOnly": "pnpm build"
26
+ },
27
+ "dependencies": {
28
+ "gsap": "^3.12.0",
29
+ "roughjs": "^4.6.6"
30
+ },
31
+ "devDependencies": {
32
+ "@types/node": "^20.0.0",
33
+ "tsup": "^8.0.0",
34
+ "typescript": "^5.0.2",
35
+ "vitest": "^1.0.0"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ },
40
+ "keywords": [
41
+ "graphics",
42
+ "animation",
43
+ "svg",
44
+ "manim",
45
+ "visualization",
46
+ "mathematics",
47
+ "diagram",
48
+ "canvas",
49
+ "declarative"
50
+ ],
51
+ "author": "Yao Shen",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/yaoshenwang/locusing.git"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/yaoshenwang/locusing/issues"
59
+ },
60
+ "homepage": "https://github.com/yaoshenwang/locusing#readme",
61
+ "engines": {
62
+ "node": ">=18"
63
+ }
64
+ }