forked from vimaec/vim-format
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1022 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1022 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
37
{
"name": "vim-format",
"version": "1.0.16-dev.3",
"description": "The VIM format is a modern and efficient open 3D data interchange format designed for BIM and manufacturing data optimized for efficient loading and rendering on low-power devices.",
"directories": {
"test": "tests"
},
"scripts": {
"declarations": "tsc --declaration --emitDeclarationOnly --outdir ./dist/types",
"build": "tsc",
"package": "npm run build && npm run declarations && npm publish",
"test": "jest"
},
"author": "VIM <hello@vimaec.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vimaec/vim-ts.git"
},
"declaration": true,
"types": "dist/index.d.ts",
"module": "/dist/index.js",
"files": [
"dist/**"
],
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.16.16",
"@types/pako": "^2.0.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"pako": "^2.1.0"
}
}