blob: 8958c41d67e12e0723f49abf70dfe0a349a73a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
"name": "@serpentity/serpentity",
"description": "An Entity-Component-System Engine",
"version": "4.0.0",
"type": "module",
"license": "Apache-2.0",
"contributors": [
{
"name": "Rubén Beltrán del Río",
"email": "subscriptions@unlimited.pizza",
"url": "https://unlimited.pizza"
}
],
"repository": {
"type": "git",
"url": "https://git.sr.ht/~rbdr/serpentity"
},
"engines": {
"node": ">= 20.0.0"
},
"scripts": {
"lint": "quick-lint-js **/*.js",
"test": "node --test --experimental-test-coverage"
},
"main": "./lib/serpentity.js"
}
|