a3js 0.0.1 → 0.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 (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -2,3 +2,4 @@
2
2
 
3
3
  TypeScript (JavaScript) 3DCG Library
4
4
 
5
+ **危険!** APIの構成を試行錯誤中。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a3js",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "main": "dist/a3js.cjs.js",
6
6
  "module": "dist/a3js.es.js",
@@ -17,12 +17,15 @@
17
17
  "scripts": {
18
18
  "dev": "vite",
19
19
  "build": "vite build && tsc --emitDeclarationOnly",
20
- "preview": "vite preview"
20
+ "preview": "vite preview",
21
+ "docs": "typedoc && vitepress build docs-src --outDir docs"
21
22
  },
22
23
  "devDependencies": {
23
24
  "@types/three": "^0.182.0",
25
+ "typedoc": "^0.28.15",
24
26
  "typescript": "~5.9.3",
25
- "vite": "^7.2.4"
27
+ "vite": "^7.2.4",
28
+ "vitepress": "^1.6.4"
26
29
  },
27
30
  "dependencies": {
28
31
  "three": "^0.182.0"