cyclecad 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.
- package/CNAME +1 -0
- package/app/docs/api-reference.html +1436 -0
- package/app/docs/examples.html +803 -0
- package/app/docs/getting-started.html +1620 -0
- package/app/duo-project-browser.html +1321 -0
- package/app/duo-rebuild-guide.html +861 -0
- package/app/index.html +1635 -0
- package/app/js/ai-chat.js +992 -0
- package/app/js/app.js +724 -0
- package/app/js/export.js +658 -0
- package/app/js/inventor-parser.js +1138 -0
- package/app/js/operations.js +689 -0
- package/app/js/params.js +523 -0
- package/app/js/reverse-engineer.js +1275 -0
- package/app/js/shortcuts.js +350 -0
- package/app/js/sketch.js +899 -0
- package/app/js/tree.js +479 -0
- package/app/js/viewport.js +643 -0
- package/app/samples/Leistenbuerstenblech.ipt +0 -0
- package/app/samples/Rahmen_Seite.iam +0 -0
- package/app/samples/TraegerHoehe1.ipt +0 -0
- package/index.html +1226 -0
- package/package.json +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cyclecad",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Browser-based parametric 3D CAD modeler with AI-powered tools, native Inventor file parsing, and smart assembly management. No install required.",
|
|
5
|
+
"main": "index.html",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "npx serve . -p 3000",
|
|
8
|
+
"start": "npx serve . -p 3000"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"cad",
|
|
12
|
+
"3d",
|
|
13
|
+
"parametric",
|
|
14
|
+
"modeler",
|
|
15
|
+
"browser",
|
|
16
|
+
"threejs",
|
|
17
|
+
"inventor",
|
|
18
|
+
"ai",
|
|
19
|
+
"assembly",
|
|
20
|
+
"engineering",
|
|
21
|
+
"cyclewash"
|
|
22
|
+
],
|
|
23
|
+
"author": "vvlars <vvlars@googlemail.com>",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/vvlars-cmd/cyclecad.git"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://cyclecad.com",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/vvlars-cmd/cyclecad/issues"
|
|
32
|
+
}
|
|
33
|
+
}
|