@nekobird/vector2
Version:
Vector2 library.
54 lines (53 loc) • 1.45 kB
JSON
{
"name": "@nekobird/vector2",
"version": "0.0.2",
"private": false,
"description": "Vector2 library.",
"keywords": [
"nekobird",
"vector2"
],
"homepage": "https://github.com/nekobird/vector2#readme",
"bugs": {
"url": "https://github.com/nekobird/vector2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nekobird/vector2.git"
},
"license": "MIT",
"author": "Andrew Prasetya",
"files": [
"build/**/*"
],
"sideEffects": false,
"main": "build/commonjs/vector2.js",
"module": "build/esm/vector2.js",
"jsnext:main": "build/esm/vector2.js",
"types": "build/types/source/vector2.d.ts",
"scripts": {
"build": "npm run clean; tsc --emitDeclarationOnly --outDir build/types/; rollup -c rollup.config.js",
"clean": "rimraf build",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@nekobird/piko": "0.0.11"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-typescript": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"rimraf": "^3.0.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"publishConfig": {
"access": "public"
}
}