-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "meshup",
"version": "0.0.1",
"description": "Broad general purpose 3D mesh library with various modeling techniques (CSG, SDF, quasi-CAD) and target applications (3D printing, craft, CNC) in Typescript and powered by Rust (CSGRS). ",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"test:unit:mesh": "vitest run tests/unit/Mesh.test.ts",
"test:example:sketch": "vitest run tests/examples/sketch.test.ts",
"test:example:scene": "vitest run tests/examples/scene.test.ts",
"test:example:house": "vitest run tests/examples/house.test.ts",
"test:example:booleans": "vitest run tests/examples/booleans.test.ts",
"test:example:curves": "vitest run tests/examples/curves.test.ts",
"test:example:offsets": "vitest run tests/examples/offsets.test.ts",
"test:example:svg": "vitest run tests/examples/svg.test.ts",
"test:example:isometry": "vitest run tests/examples/isometry.test.ts",
"test:example:alignments": "vitest run tests/examples/alignments.test.ts",
"test:example:specialops": "vitest run tests/examples/specialops.test.ts",
"test:unit:compare": "vitest run tests/unit/compare.test.ts",
"test:unit:selector": "vitest run tests/unit/Selector.test.ts",
"test:unit:curve": "vitest run tests/unit/Curve.test.ts",
"build:wasm": "tsx buildscripts/build-wasm.ts",
"rust:check": "cd ./devlibs/csgrs && cargo check --features wasm --no-deps --target wasm32-unknown-unknown",
"build": "tsup",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"keywords": [],
"author": "Mark van der Net (Archiyou)",
"license": "Apache-2.0",
"packageManager": "pnpm@10.26.0",
"devDependencies": {
"@types/node": "^25.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"dependencies": {
"@gltf-transform/core": "^4.3.0"
}
}