-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "picostack",
"type": "module",
"version": "2.0.2",
"description": "Minimal Web8 Framework",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"simple-kernel.js",
"simple-kernel.d.ts",
"simple-rpc.js",
"simple-rpc.d.ts",
"modem56.js"
],
"scripts": {
"lint": "standard --fix",
"test": "node test.js",
"modem": "browserify modem56.js -s Modem56 -o modem56.web.js",
"debug": "node inspect test.js",
"types": "(rm *.ts || true) && tsc --skipLibCheck --emitDeclarationOnly --allowJs --checkJs --declaration --removeComments --lib es2022 --target es2022 --moduleResolution nodenext --module nodenext index.js",
"prepublishOnly": "standard && npm test && npm run types"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git://https://github.com/telamon/picostack"
},
"author": "Tony Ivanov",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/telamon/picostack"
},
"homepage": "https://github.com/telamon/picostack",
"devDependencies": {
"@types/web": "^0.0.152",
"brittle": "^3.6.1",
"debug": "^4.3.6",
"hyperswarm": "^4.8.2",
"memory-level": "^1.0.0",
"standard": "^17.1.0",
"wtfnode": "^0.9.3"
},
"dependencies": {
"@telamon/picostore": "3.0.4",
"cborg": "^4.2.3",
"picofeed": "^8.0.5",
"piconet": "^4.0.3",
"piconuro": "^1.0.1",
"picorepo": "^2.2.5"
}
}