feat:处理器初步实现---有接上了新优化,回显需要再看下

This commit is contained in:
2025-07-09 16:36:26 +08:00
parent 92b49c7035
commit 595675a08a
42 changed files with 70546 additions and 1993 deletions

View File

@@ -2,8 +2,10 @@
"name": "cut-abstractions",
"version": "0.1.4",
"description": "",
"files": ["dist/**/*"],
"main":"./dist/index.js",
"files": [
"dist/**/*"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.js",
"exports": {
@@ -12,7 +14,7 @@
"scripts": {
"build": "tsc",
"release": "pnpm pack --pack-destination ./dist-packs",
"clean":"rimraf ./dist",
"clean": "rimraf ./dist",
"test": "jest"
},
"keywords": [],
@@ -23,8 +25,18 @@
"@jest/globals": "^30.0.2",
"@swc/core": "^1.12.4",
"@swc/jest": "^0.2.38",
"@types/jest": "^30.0.0",
"cadapi": "http://gitea.cf/MES-FE/webcad-api/archive/0.0.60.tar.gz",
"jest": "^30.0.2",
"jest-worker": "^30.0.2",
"js-angusj-clipper": "^1.0.4",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"jest-worker": "^30.0.2",
"three": "^0.178.0",
"webworker": "^0.8.4"
}
}