-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.44 KB
/
package.json
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
{
"name": "dxf-json",
"version": "1.0.0",
"description": "perfect dxf parser",
"type": "module",
"main": "./dist/bundle.cjs",
"module": "./dist/bundle.mjs",
"exports": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle.cjs",
"types": "./dist/index.d.ts"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && rollup --config",
"test": "jest --silent=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotoritos-kim/dxf-json.git"
},
"keywords": [
"dxf",
"cad",
"dxf-json",
"json",
"type-safe-dxf",
"type-safe",
"typescript"
],
"author": {
"name": "kanghyune kim",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
"phryxia"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dotoritos-kim/dxf-json/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/dotoritos-kim/dxf-json#readme",
"dependencies": {
"@fxts/core": "^1.0.1"
},
"devDependencies": {
"@swc/core": "^1.3.107",
"@types/jest": "^29.5.11",
"@types/readable-stream": "^4.0.10",
"@types/three": "^0.160.0",
"jest": "^29.7.0",
"resolve-typescript-plugin": "^2.0.1",
"rollup": "^4.9.6",
"rollup-plugin-swc3": "^0.11.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}