vtf-js
Version:
A javascript IO library for the Valve Texture Format.
54 lines • 1.28 kB
JSON
{
"name": "vtf-js",
"version": "0.9.4",
"description": "A javascript IO library for the Valve Texture Format.",
"author": "Koerismo",
"license": "LGPL-3.0-or-later",
"type": "module",
"files": [
"dist/"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./*",
"./utils": "./dist/core/utils.js",
"./resources": "./dist/core/resources.js",
"./addons/*": "./dist/addons/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koerismo/vtf-js.git"
},
"keywords": [
"source-engine",
"vtf",
"valve"
],
"homepage": "https://github.com/koerismo/vtf-js#readme",
"bugs": {
"url": "https://github.com/koerismo/vtf-js/issues"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"mocha": "^11.7.1",
"sharp": "^0.34.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"dependencies": {
"fflate": "^0.8.2",
"libsquish-js": "^1.0.1"
},
"scripts": {
"test": "mocha",
"build": "tsc",
"watch": "tsc --watch"
}
}