svga-web
Version:
A SVGA player for modern Web.
76 lines • 1.8 kB
JSON
{
"name": "svga-web",
"version": "2.4.2",
"description": "A SVGA player for modern Web.",
"homepage": "https://github.com/Naeemo/svga-web",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/Naeemo/svga-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naeemo/svga-web.git"
},
"keywords": [
"svga",
"svga web player",
"Typescript",
"svga.lite"
],
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/svga-web.js",
"module": "./dist/svga-web.umd.cjs",
"exports": {
".": {
"import": "./dist/svga-web.js",
"require": "./dist/svga-web.umd.cjs"
}
},
"types": "src/index.ts",
"author": "naeemo<naeemo@qq.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^20.19.9",
"@types/offscreencanvas": "^2019.6.4",
"@types/pako": "^2.0.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"jiti": "^2.5.1",
"lint-staged": "^15.5.2",
"pako": "^2.0.4",
"prettier": "^3.6.2",
"protobufjs": "^7.5.3",
"protobufjs-cli": "^1.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^6.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|js|json|md|html)": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"prestart": "prettier --check ./src && tsc -p ./",
"start": "eslint ./src && vite",
"prebuild": "prettier --check ./src && tsc -p ./",
"build": "vite build",
"prepublish": "pnpm build",
"proto": "node scripts/generate-proto.mjs"
}
}