@syamaz/catmull-rom-spline 1.0.2

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 (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +29 -0
  3. package/readme.md +9 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,22 @@
1
+ # Changelog
2
+
3
+ ## [1.0.2](https://github.com/sYamaz/catmull-rom-spline/compare/v1.0.1...v1.0.2) (2024-11-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * batch ([#5](https://github.com/sYamaz/catmull-rom-spline/issues/5)) ([925116e](https://github.com/sYamaz/catmull-rom-spline/commit/925116ec9d250e7485dc2d41cbc27ab970371a1c))
9
+
10
+ ## [1.0.1](https://github.com/sYamaz/catmull-rom-spline/compare/v1.0.0...v1.0.1) (2024-11-09)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * package.json ([83cf96a](https://github.com/sYamaz/catmull-rom-spline/commit/83cf96a5295e0b7d8e5a20cf6868f4dfb2840cd0))
16
+
17
+ ## 1.0.0 (2024-11-09)
18
+
19
+
20
+ ### Features
21
+
22
+ * batch runnerの追加 ([#2](https://github.com/sYamaz/catmull-rom-spline/issues/2)) ([0fbeac3](https://github.com/sYamaz/catmull-rom-spline/commit/0fbeac3399a2fc62ce68c2bc3ed5de841670d25c))
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@syamaz/catmull-rom-spline",
3
+ "version": "1.0.2",
4
+ "author": "Shun Yamazaki",
5
+ "license": "MIT",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "type": "module",
12
+ "devDependencies": {
13
+ "@eslint/js": "^9.14.0",
14
+ "@types/jest": "^29.5.14",
15
+ "@types/node": "^22.8.6",
16
+ "eslint": "^9.14.0",
17
+ "globals": "^15.11.0",
18
+ "jest": "^29.7.0",
19
+ "ts-jest": "^29.2.5",
20
+ "ts-node": "^10.9.2",
21
+ "typescript": "^5.6.3",
22
+ "typescript-eslint": "^8.12.2"
23
+ },
24
+ "scripts": {
25
+ "build": "tsc -d -p .",
26
+ "build:live": "yarn build --watch",
27
+ "test": "jest"
28
+ }
29
+ }
package/readme.md ADDED
@@ -0,0 +1,9 @@
1
+ # @syamaz/catmull-rom-spline
2
+
3
+ Catmull-rom splineのts実装です。
4
+
5
+ wikipedia: https://en.wikipedia.org/wiki/Centripetal_Catmull%E2%80%93Rom_spline
6
+
7
+ ## usage
8
+
9
+ see [example.md](./docs/example.md)