-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "gcv-conversion-module",
"version": "1.0.0",
"description": "A lightweight Node.js/TypeScript utility to validate, convert, and zip 3D model files using the **BRL-CAD `gcv` tool. This package is designed for use in backend frameworks like NestJS or Express.",
"homepage": "https://github.com/simarjot0032/gcv-conversion-module#readme",
"bugs": {
"url": "https://github.com/simarjot0032/gcv-conversion-module/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simarjot0032/gcv-conversion-module.git"
},
"license": "ISC",
"author": "Simarjot Singh",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "^24.2.0",
"typescript": "^5.9.2"
},
"dependencies": {
"archiver": "^7.0.1"
}
}