This repository was archived by the owner on Dec 31, 2025. It is now read-only.
forked from gdsestimating/dxf-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.25 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
{
"name": "@f12o/dxf-parser",
"version": "1.2.0",
"description": "Parse dxf files into a readable, logical js object.",
"type": "module",
"main": "./commonjs/index.js",
"module": "./esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./commonjs/index.js"
},
"types": "./esm/index.d.ts",
"scripts": {
"pretest": "pnpm run build",
"test": "mocha test",
"dev": "tsc -w & webpack --mode development",
"build": "tsc && webpack --mode production",
"lint": "oxlint src test",
"format": "oxfmt --write src test",
"format:check": "oxfmt --check src test",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/f4ah6o/dxf-parser.git"
},
"bugs": {
"url": "https://github.com/f4ah6o/dxf-parser/issues",
"email": "bzuillsmith@gmail.com"
},
"homepage": "https://github.com/f4ah6o/dxf-parser",
"author": "GDS Storefront Estimating (gdsestimating.com)",
"contributors": [
"Ben Zuill-Smith <bzuillsmith@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/register": "^7.28.3",
"@types/node": "^22.7.4",
"mocha": "^11.7.5",
"oxfmt": "^0.20.0",
"oxlint": "^0.11.0",
"should": "^13.2.3",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"loglevel": "^1.9.2"
},
"keywords": [
"dxf",
"cad",
"parser",
"reader"
],
"files": [
"commonjs",
"esm",
"src"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.11.0"
}