UNPKG

war3-model

Version:

Warcraft 3 model parser, generator, convertor and previewer

72 lines (71 loc) 1.8 kB
{ "name": "war3-model", "version": "4.0.0", "description": "Warcraft 3 model parser, generator, convertor and previewer", "keywords": [ "warcraft3", "reforged", "mdl", "mdx", "blp", "webgl", "webgpu", "typescript", "front-end", "backend" ], "homepage": "https://github.com/4eb0da/war3-model", "bugs": { "url": "https://github.com/4eb0da/war3-model/issues" }, "repository": "github:4eb0da/war3-model", "author": "4eb0da", "license": "MIT", "engines": { "node": ">=4.0.0" }, "scripts": { "prepublishOnly": "npm run build-lib", "prepare": "husky install", "dev": "vite", "build-lib": "rm -rf dist && vite build && rollup --config rollup.config.ts --configPlugin typescript", "build-samples": "rm -rf docs/dist && SAMPLES=1 npx vite build", "typecheck": "tsc --noEmit", "lint": "eslint --ext .ts ." }, "dependencies": { "@webgpu/types": "0.1.60", "gl-matrix": "3.3.0" }, "devDependencies": { "@rollup/plugin-typescript": "12.1.2", "@types/eslint": "7.29.0", "@types/estree": "0.0.51", "@types/node": "22.15.3", "@typescript-eslint/eslint-plugin": "5.43.0", "@typescript-eslint/parser": "5.43.0", "dds-parser": "1.0.1", "eslint": "7.32.0", "husky": "7.0.4", "monaco-editor": "0.27.0", "rollup": "4.40.1", "rollup-plugin-dts": "6.2.1", "typescript": "4.8.4", "vite": "6.3.5" }, "files": [ "dist/*" ], "main": "dist/war3-model.cjs", "module": "dist/es/war3-model.mjs", "typings": "dist/war3-model.d.ts", "exports": { ".": { "types": "./dist/war3-model.d.ts", "require": "./dist/war3-model.cjs", "import": "./dist/es/war3-model.mjs" }, "./dist/": "./dist/" }, "type": "module" }