-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 844 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 844 Bytes
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
{
"name": "@filemap/dwg2dxf",
"version": "0.1.1",
"description": "dwg to dxf converter for Node.JS",
"author": "FileMap",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"engines": {
"node": ">=20.0.0"
},
"os": [
"darwin",
"win32"
],
"scripts": {
"install": "echo",
"build": "zx scripts/build.mjs",
"test": "node test.js",
"clean": "rimraf build libredwg"
},
"dependencies": {
"nan": "^2.22.2",
"node-addon-api": "^8.3.1",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"fs-extra": "^11.3.0",
"node-gyp": "^11.2.0",
"prebuildify": "^6.0.1",
"rimraf": "^6.0.1",
"zx": "^8.5.4"
},
"packageManager": "yarn@1.22.22"
}