forked from donalffons/opencascade.js
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.37 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@taucad/opencascade.js",
"version": "3.0.0-beta.2",
"description": "Port of the OpenCascade CAD library to JavaScript and WebAssembly via Emscripten.",
"keywords": [
"opencascade",
"occt",
"cad",
"wasm",
"webassembly",
"brep",
"step",
"iges",
"geometry",
"3d"
],
"homepage": "https://github.com/taucad/opencascade.js#readme",
"bugs": {
"url": "https://github.com/taucad/opencascade.js/issues"
},
"license": "LGPL-2.1-only WITH Open-CASCADE-Exception-1.0",
"author": "Richard Fontein <32132657+rifont@users.noreply.github.com>",
"contributors": [
"Sebastian Alff <donalffons@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/taucad/opencascade.js.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/opencascade_full.d.ts",
"default": "./dist/opencascade_full.js"
},
"./wasm": "./dist/opencascade_full.wasm",
"./multi": {
"types": "./dist/opencascade_full_multi.d.ts",
"default": "./dist/opencascade_full_multi.js"
},
"./multi/wasm": "./dist/opencascade_full_multi.wasm",
"./package.json": "./package.json"
},
"files": [
"dist/opencascade_full.js",
"dist/opencascade_full.wasm",
"dist/opencascade_full.d.ts",
"dist/opencascade_full.js.symbols",
"dist/opencascade_full.build-manifest.json",
"dist/opencascade_full.provenance.json",
"dist/opencascade_full_multi.js",
"dist/opencascade_full_multi.wasm",
"dist/opencascade_full_multi.d.ts",
"dist/opencascade_full_multi.js.symbols",
"dist/opencascade_full_multi.build-manifest.json",
"dist/opencascade_full_multi.provenance.json",
"CHANGELOG.md",
"BREAKING_CHANGES.md",
"LICENSE",
"LICENSE.OCCT-Exception"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run tests/smoke/",
"test:smoke": "vitest run tests/smoke/",
"typecheck": "tsc --project tests/tsconfig.json",
"lint": "eslint --config eslint.config.mjs tests",
"lint:fix": "eslint --config eslint.config.mjs --fix tests"
},
"devDependencies": {
"@gltf-transform/core": "^4.3.0",
"@gltf-transform/functions": "^4.3.0",
"@types/node": "~24.0.15",
"eslint": "^9.32.0",
"nx": "22.5.2",
"typedoc": "^0.28.19",
"typescript-eslint": "^8.56.1"
}
}