-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 KB
/
package.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "poh",
"type": "module",
"version": "1.0.0",
"description": "Pico Proof-of-Honor Kernel",
"main": "index.js",
"files": [
"index.js",
"binorg.js",
"db.js",
"player.js"
],
"author": "Tony Ivanov",
"license": "AGPL-version-3",
"bugs": {
"url": "https://github.com/telamohn/poh/issues"
},
"homepage": "https://github.com/telamohn/poh",
"scripts": {
"build": "esbuild --bundle index.js --outfile=../build/K.js --format=esm",
"test": "node test.js",
"debug": "node inspect test.js",
"types": "(rm *.ts || true) && tsc --skipLibCheck --noEmit --allowJs --checkJs --declaration --removeComments --lib es2022 --target es2022 --moduleResolution nodenext --module nodenext index.js",
"lint": "standard --fix"
},
"dependencies": {
"piconuro": "^1.0.1",
"picostack": "^2.0.2",
"pure-random-number": "^3.2.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"debug": "^4.3.6",
"esbuild": "^0.23.0",
"hyperswarm": "^4.8.1",
"memory-level": "^1.0.0",
"standard": "^17.1.0",
"tape": "^5.8.1"
}
}