@pixiv/three-vrm
Version:
VRM file loader for three.js.
65 lines (64 loc) • 2.21 kB
JSON
{
"name": "@pixiv/three-vrm",
"version": "0.6.4",
"description": "VRM file loader for three.js.",
"license": "MIT",
"author": "pixiv",
"files": [
"/lib/",
"/ts*/",
"/types/",
"LICENSE"
],
"main": "lib/three-vrm.min.js",
"module": "lib/three-vrm.module.min.js",
"types": "types/index.d.ts",
"typesVersions": {
"<3.9": {
"*": [
"ts3.4/*"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/pixiv/three-vrm.git"
},
"scripts": {
"version": "yarn all",
"postpublish": "yarn gh-pages",
"all": "yarn && yarn test && yarn lint && yarn clean && yarn build && yarn docs",
"dev": "cross-env NODE_ENV=development SERVE=1 rollup -w -c -o lib/three-vrm.js",
"clean": "rimraf docs lib ts*/ types",
"build": "yarn build-dev && yarn build-prod && yarn build-moduledev && yarn build-moduleprod && yarn build-types",
"build-dev": "cross-env NODE_ENV=development rollup -c -o lib/three-vrm.js",
"build-prod": "cross-env NODE_ENV=production rollup -c -o lib/three-vrm.min.js",
"build-moduledev": "cross-env NODE_ENV=development ESM=1 rollup -c -o lib/three-vrm.module.js",
"build-moduleprod": "cross-env NODE_ENV=production ESM=1 rollup -c -o lib/three-vrm.module.min.js",
"build-types": "tsc --declaration --declarationDir ./types --emitDeclarationOnly && downlevel-dts types ts3.4/types",
"docs": "typedoc --entryPoints ./src/index.ts --out docs",
"gh-pages": "node ./bin/gh-pages.js",
"test": "echo There is no test for three-vrm",
"lint": "eslint \"src/**/*.{ts,tsx}\" && prettier \"src/**/*.{ts,tsx}\" --check",
"lint-fix": "eslint \"src/**/*.{ts,tsx}\" --fix && prettier \"src/**/*.{ts,tsx}\" --write",
"typedefgen": "node ./bin/typedefgen.js"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/three": "^0.126.0",
"gh-pages": "^3.1.0",
"lint-staged": "10.5.4",
"quicktype": "^15.0.258",
"three": "^0.126.1"
},
"peerDependencies": {
"@types/three": "^0.126.0",
"three": "^0.126.1"
},
"gitHead": "7d6f3c08ad2612b24a8c73537b0483e45c615c50"
}