mson-three/package.json

37 lines
763 B
JSON
Raw Normal View History

2024-02-18 10:42:09 +00:00
{
"name": "mson-three",
"version": "1.0.0",
2024-04-25 14:32:39 +00:00
"description": "Mson to THREE.js utilities",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"bin": {
"mson-three": "./bin/mson-three.js"
},
2024-02-18 10:42:09 +00:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
2024-04-25 14:32:39 +00:00
"watch": "tsc -w",
"prepare": "npm run build"
2024-02-18 10:42:09 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.19",
"@types/three": "^0.161.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
2024-04-25 14:18:44 +00:00
"optionalDependencies": {
"buffer": "^6.0.3",
"canvas": "^2.11.2",
"commander": "^12.0.0"
},
2024-02-18 10:42:09 +00:00
"dependencies": {
"three": "^0.161.0"
}
}