X-Git-Url: https://git.r.bdr.sh/rbdr/serpentity/blobdiff_plain/971ff307c745e394ba3fd20e9dfbd1f302736c7c..HEAD:/package.json?ds=sidebyside diff --git a/package.json b/package.json index 028bbb2..8958c41 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,26 @@ { - "name" : "serpentity", - "description" : "A simple entity frameowrk inspired by ash", - "version" : "0.1.1", - "contributors" : [ + "name": "@serpentity/serpentity", + "description": "An Entity-Component-System Engine", + "version": "4.0.0", + "type": "module", + "license": "Apache-2.0", + "contributors": [ { - "name" : "Ben Beltran", - "email" : "ben@nsovocal.com", - "url" : "http://nsovocal.com" + "name": "Rubén Beltrán del Río", + "email": "subscriptions@unlimited.pizza", + "url": "https://unlimited.pizza" } ], - "repository" : { - "type" : "git", - "url" : "https://github.com/benbeltran/serpentity.git" + "repository": { + "type": "git", + "url": "https://git.sr.ht/~rbdr/serpentity" }, - "dependencies" : { - "neon" : "2.0.x" + "engines": { + "node": ">= 20.0.0" }, - "devDependencies" : { - "colors" : "0.6.2", - "tellurium" : "2.0.x" + "scripts": { + "lint": "quick-lint-js **/*.js", + "test": "node --test --experimental-test-coverage" }, - "engines" : { "node" : ">= 0.10.0" }, - "main" : "./lib/serpentity/serpentity.js" + "main": "./lib/serpentity.js" } -