dxfview 0.0.4-beta.1 → 0.0.4-beta.11
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/dist/dxfview.esm.min.js +2 -2
- package/dist/types/core/dxf/DxfLoader.d.ts +1 -1
- package/dist/types/core/geometry-offset/Offset.d.ts +2 -2
- package/dist/types/core/utils/MergeUtils.d.ts +1 -1
- package/dist/types/core/utils/utf8OrGBK.d.ts +4 -0
- package/dist/types/plugins/annotation/AnnotationPlugin.d.ts +43 -0
- package/dist/types/plugins/annotation/BaseAnnotation.d.ts +34 -1
- package/dist/types/plugins/annotation/BaseAnnotationDrawable.d.ts +25 -2
- package/dist/types/plugins/annotation/FreeDrawAnnotation.d.ts +47 -13
- package/dist/types/plugins/annotation/RectAnnotation.d.ts +36 -9
- package/dist/types/plugins/annotation/RectDrawable.d.ts +8 -1
- package/dist/types/plugins/annotation/freeDrawDrawable.d.ts +1 -0
- package/dist/types/plugins/annotation/type.d.ts +1 -0
- package/dist/types/plugins/divide/DividePlugin.d.ts +10 -2
- package/package.json +90 -90
package/package.json
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dxfview",
|
|
3
|
-
"version": "0.0.4-beta.
|
|
4
|
-
"homepage": "",
|
|
5
|
-
"module": "dist/dxfview.esm.min.js",
|
|
6
|
-
"main": "dist/dxfview.esm.min.js",
|
|
7
|
-
"types": "dist/types/index.d.ts",
|
|
8
|
-
"type": "module",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"clean": "rimraf dist build",
|
|
11
|
-
"build:release": "node --loader ts-node/esm esbuild.config.ts -mode=production",
|
|
12
|
-
"build:prebuild": "node --loader ts-node/esm esbuild.config.ts -mode=prebuild",
|
|
13
|
-
"build:datatype": "tsc && tsc-alias",
|
|
14
|
-
"build": "npm run clean && npm run lint-fix && npm run build:datatype && npm run build:release",
|
|
15
|
-
"build:dev": "npm run clean && npm run lint-fix && npm run build:prebuild",
|
|
16
|
-
"build:dev:watch": "npm run clean && npm run lint-fix && npm run build:datatype && node --loader ts-node/esm esbuild.config.ts -mode=devwatch",
|
|
17
|
-
"demo": "npm run build:dev && node demo/index.cjs",
|
|
18
|
-
"start": "node --loader ts-node/esm esbuild.config.ts -mode=development",
|
|
19
|
-
"lint": "eslint src --ext ts",
|
|
20
|
-
"lint-fix": "npm run lint -- --fix",
|
|
21
|
-
"docs": "typedoc src/export.doc.ts --excludePrivate --excludeProtected --excludeInternal --exclude src/pathes/*"
|
|
22
|
-
},
|
|
23
|
-
"files": [
|
|
24
|
-
"/dist"
|
|
25
|
-
],
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git"
|
|
28
|
-
},
|
|
29
|
-
"author": "dxfview",
|
|
30
|
-
"license": "UNLICENSED",
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"@noble/ed25519": "^2.0.0",
|
|
33
|
-
"@noble/hashes": "^1.4.0",
|
|
34
|
-
"@types/concaveman": "^1.1.3",
|
|
35
|
-
"@types/lodash": "^4.14.165",
|
|
36
|
-
"@types/resize-observer-browser": "^0.1.7",
|
|
37
|
-
"2d-polygon-boolean": "^1.0.1",
|
|
38
|
-
"2d-polygon-self-intersections": "^1.3.1",
|
|
39
|
-
"camera-controls": "^1.37.4",
|
|
40
|
-
"clipper-lib": "^6.4.2",
|
|
41
|
-
"concaveman": "^1.2.1",
|
|
42
|
-
"core-js": "^3.27.1",
|
|
43
|
-
"disable-devtool": "^0.3.9",
|
|
44
|
-
"i18next": "^21.6.0",
|
|
45
|
-
"intl-pluralrules": "^1.3.1",
|
|
46
|
-
"javascript-obfuscator": "^4.1.1",
|
|
47
|
-
"js-base64": "^3.7.2",
|
|
48
|
-
"jsbi": "^4.3.0",
|
|
49
|
-
"lodash": "^4.17.20",
|
|
50
|
-
"loglevel": "^1.8.0",
|
|
51
|
-
"mitt": "^3.0.0",
|
|
52
|
-
"opentype.js": "^1.3.4",
|
|
53
|
-
"poly-extrude": "^0.2.0",
|
|
54
|
-
"polybooljs": "^1.2.0",
|
|
55
|
-
"polygon-clipping": "^0.15.3",
|
|
56
|
-
"regenerator-runtime": "^0.13.11",
|
|
57
|
-
"screenfull": "^6.0.0",
|
|
58
|
-
"stream": "^0.0.2",
|
|
59
|
-
"three": "^0.155.0",
|
|
60
|
-
"three-mesh-bvh": "^0.5.21"
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
63
|
-
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
|
|
64
|
-
"@types/eslint": "^8.21.1",
|
|
65
|
-
"@types/node": "^18.11.19",
|
|
66
|
-
"@types/resize-observer-browser": "^0.1.7",
|
|
67
|
-
"@types/sha256": "^0.2.0",
|
|
68
|
-
"@types/three": "^0.155.0",
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
70
|
-
"@typescript-eslint/parser": "^5.47.1",
|
|
71
|
-
"esbuild": "^0.16.17",
|
|
72
|
-
"esbuild-plugin-inline-worker": "^0.1.1",
|
|
73
|
-
"esbuild-plugin-sass": "^1.0.1",
|
|
74
|
-
"eslint": "^8.15.0",
|
|
75
|
-
"eslint-config-prettier": "^8.5.0",
|
|
76
|
-
"eslint-import-resolver-typescript": "^3.5.2",
|
|
77
|
-
"eslint-plugin-import": "2.26.0",
|
|
78
|
-
"eslint-plugin-prettier": "^4.2.1",
|
|
79
|
-
"express": "^4.17.1",
|
|
80
|
-
"live-server": "^1.2.2",
|
|
81
|
-
"prettier": "^2.5.1",
|
|
82
|
-
"rimraf": "^3.0.2",
|
|
83
|
-
"sha256": "^0.2.0",
|
|
84
|
-
"terser": "^5.16.2",
|
|
85
|
-
"ts-node": "^10.9.1",
|
|
86
|
-
"tsc-alias": "^1.8.2",
|
|
87
|
-
"typedoc": "^0.22.12",
|
|
88
|
-
"typescript": "^4.5.2"
|
|
89
|
-
}
|
|
90
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "dxfview",
|
|
3
|
+
"version": "0.0.4-beta.11",
|
|
4
|
+
"homepage": "",
|
|
5
|
+
"module": "dist/dxfview.esm.min.js",
|
|
6
|
+
"main": "dist/dxfview.esm.min.js",
|
|
7
|
+
"types": "dist/types/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"clean": "rimraf dist build",
|
|
11
|
+
"build:release": "node --loader ts-node/esm esbuild.config.ts -mode=production",
|
|
12
|
+
"build:prebuild": "node --loader ts-node/esm esbuild.config.ts -mode=prebuild",
|
|
13
|
+
"build:datatype": "tsc && tsc-alias",
|
|
14
|
+
"build": "npm run clean && npm run lint-fix && npm run build:datatype && npm run build:release",
|
|
15
|
+
"build:dev": "npm run clean && npm run lint-fix && npm run build:prebuild",
|
|
16
|
+
"build:dev:watch": "npm run clean && npm run lint-fix && npm run build:datatype && node --loader ts-node/esm esbuild.config.ts -mode=devwatch",
|
|
17
|
+
"demo": "npm run build:dev && node demo/index.cjs",
|
|
18
|
+
"start": "node --loader ts-node/esm esbuild.config.ts -mode=development",
|
|
19
|
+
"lint": "eslint src --ext ts",
|
|
20
|
+
"lint-fix": "npm run lint -- --fix",
|
|
21
|
+
"docs": "typedoc src/export.doc.ts --excludePrivate --excludeProtected --excludeInternal --exclude src/pathes/*"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"/dist"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git"
|
|
28
|
+
},
|
|
29
|
+
"author": "dxfview",
|
|
30
|
+
"license": "UNLICENSED",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@noble/ed25519": "^2.0.0",
|
|
33
|
+
"@noble/hashes": "^1.4.0",
|
|
34
|
+
"@types/concaveman": "^1.1.3",
|
|
35
|
+
"@types/lodash": "^4.14.165",
|
|
36
|
+
"@types/resize-observer-browser": "^0.1.7",
|
|
37
|
+
"2d-polygon-boolean": "^1.0.1",
|
|
38
|
+
"2d-polygon-self-intersections": "^1.3.1",
|
|
39
|
+
"camera-controls": "^1.37.4",
|
|
40
|
+
"clipper-lib": "^6.4.2",
|
|
41
|
+
"concaveman": "^1.2.1",
|
|
42
|
+
"core-js": "^3.27.1",
|
|
43
|
+
"disable-devtool": "^0.3.9",
|
|
44
|
+
"i18next": "^21.6.0",
|
|
45
|
+
"intl-pluralrules": "^1.3.1",
|
|
46
|
+
"javascript-obfuscator": "^4.1.1",
|
|
47
|
+
"js-base64": "^3.7.2",
|
|
48
|
+
"jsbi": "^4.3.0",
|
|
49
|
+
"lodash": "^4.17.20",
|
|
50
|
+
"loglevel": "^1.8.0",
|
|
51
|
+
"mitt": "^3.0.0",
|
|
52
|
+
"opentype.js": "^1.3.4",
|
|
53
|
+
"poly-extrude": "^0.2.0",
|
|
54
|
+
"polybooljs": "^1.2.0",
|
|
55
|
+
"polygon-clipping": "^0.15.3",
|
|
56
|
+
"regenerator-runtime": "^0.13.11",
|
|
57
|
+
"screenfull": "^6.0.0",
|
|
58
|
+
"stream": "^0.0.2",
|
|
59
|
+
"three": "^0.155.0",
|
|
60
|
+
"three-mesh-bvh": "^0.5.21"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
|
|
64
|
+
"@types/eslint": "^8.21.1",
|
|
65
|
+
"@types/node": "^18.11.19",
|
|
66
|
+
"@types/resize-observer-browser": "^0.1.7",
|
|
67
|
+
"@types/sha256": "^0.2.0",
|
|
68
|
+
"@types/three": "^0.155.0",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
70
|
+
"@typescript-eslint/parser": "^5.47.1",
|
|
71
|
+
"esbuild": "^0.16.17",
|
|
72
|
+
"esbuild-plugin-inline-worker": "^0.1.1",
|
|
73
|
+
"esbuild-plugin-sass": "^1.0.1",
|
|
74
|
+
"eslint": "^8.15.0",
|
|
75
|
+
"eslint-config-prettier": "^8.5.0",
|
|
76
|
+
"eslint-import-resolver-typescript": "^3.5.2",
|
|
77
|
+
"eslint-plugin-import": "2.26.0",
|
|
78
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
79
|
+
"express": "^4.17.1",
|
|
80
|
+
"live-server": "^1.2.2",
|
|
81
|
+
"prettier": "^2.5.1",
|
|
82
|
+
"rimraf": "^3.0.2",
|
|
83
|
+
"sha256": "^0.2.0",
|
|
84
|
+
"terser": "^5.16.2",
|
|
85
|
+
"ts-node": "^10.9.1",
|
|
86
|
+
"tsc-alias": "^1.8.2",
|
|
87
|
+
"typedoc": "^0.22.12",
|
|
88
|
+
"typescript": "^4.5.2"
|
|
89
|
+
}
|
|
90
|
+
}
|