gtavjs-template-mod
Version:
Create single-player mods using Typescript/Javascript.
38 lines (37 loc) • 1.06 kB
JSON
{
"name": "gtavjs-template-mod",
"author": "Konijima",
"description": "Create single-player mods using Typescript/Javascript.",
"version": "1.0.1",
"types": "index.d.ts",
"scripts": {
"clean": "del-cli scripts/**/*.js scripts/**/*.d.ts",
"build": "npm run clean && tsc",
"watch": "npm run build -- --watch",
"bundle": "npm run build -- --emitDeclarationOnly && node node_modules/gtavjs-ts-bundler",
"prepublish": "npm update && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gtavjs-template-mod.git"
},
"bugs": {
"url": "https://github.com/GTAVJS/gtavjs-template-mod/issues"
},
"homepage": "https://github.com/GTAVJS/gtavjs-template-mod#readme",
"keywords": [
"GTA5",
"GTAVJS",
"Typescript",
"Modding"
],
"devDependencies": {
"del-cli": "^5.0.0",
"typescript": "^4.8.3"
},
"dependencies": {
"gtavjs-ts-bundler": "latest",
"gtavjs-typing": "latest",
"gtavjs-utils-mod": "latest"
}
}