-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.98 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "three-cad-viewer",
"version": "5.0.3",
"type": "module",
"description": "WebGL-based CAD viewer built on Three.js with clipping planes, measurement tools, and tree navigation",
"repository": {
"type": "git",
"url": "https://github.com/bernhard-42/three-cad-viewer"
},
"files": [
"README.md",
"dist/**/*.d.ts",
"dist/three-cad-viewer.css",
"dist/three-cad-viewer.esm.js",
"dist/three-cad-viewer.esm.js.map",
"dist/three-cad-viewer.esm.min.js",
"dist/three-cad-viewer.js",
"dist/three-cad-viewer.min.js"
],
"main": "dist/three-cad-viewer.js",
"module": "dist/three-cad-viewer.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/three-cad-viewer.esm.js",
"require": "./dist/three-cad-viewer.js"
},
"./css": "./dist/three-cad-viewer.css"
},
"sideEffects": [
"*.css"
],
"scripts": {
"clean": "rimraf ./dist/",
"build": "node ./scripts/copy_version.cjs && rollup -c --environment BUILD:production",
"prepare": "yarn run build",
"start": "rollup -w -c",
"debug": "rollup -w -c --environment BUILD:development --sourcemap",
"docs": "./scripts/build_docs.sh",
"release": "./scripts/release.sh",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,js,css}\" \"tests/**/*.{ts,js}\" \"*.{html,md,json}\" \".prettierrc\" \".vscode/*.json\"",
"format:check": "prettier --check \"src/**/*.{ts,js,css}\" \"tests/**/*.{ts,js}\" \"*.{html,md,json}\" \".prettierrc\" \".vscode/*.json\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:run-slow": "RUN_SLOW_TESTS=true vitest run tests/integration/z-examples-snapshot.test.js",
"test:coverage": "vitest run --coverage"
},
"author": "Bernhard Walter",
"license": "MIT",
"dependencies": {
"n8ao": "1.10.1",
"postprocessing": "6.39.0",
"three": "0.184.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@eslint/js": "10.0.1",
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/three": "0.184.0",
"@vitest/coverage-v8": "4.1.4",
"@vitest/ui": "4.1.4",
"cross-spawn": "7.0.6",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"happy-dom": "20.8.9",
"jsdoc": "4.0.5",
"postcss": "8.5.9",
"postcss-url": "10.1.3",
"prettier": "3.8.2",
"rimraf": "6.1.3",
"rollup": "4.60.1",
"rollup-plugin-import-css": "4.2.0",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-serve": "3.0.0",
"rollup-plugin-string": "3.0.0",
"tslib": "2.8.1",
"typedoc": "0.28.18",
"typescript": "5.9.2",
"typescript-eslint": "8.58.1",
"vitest": "4.1.4"
},
"babel": {},
"packageManager": "yarn@1.22.22",
"resolutions": {
"minimatch": "10.2.5"
}
}