forked from steelblockchain/abricot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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": "abricot",
"version": "0.0.15",
"description": "abricot is a modulable program. it cannot make crêpes yet but maybe soon.",
"main": "dist/index.js",
"type": "module",
"repository": "https://github.com/steelblockchain/abricot.git",
"scripts": {
"clean": "rm -rf dist",
"lint": "tsc",
"build": "tsc && npm run clean && tsup src --format esm --dts",
"start": "npm run build && node dist/index",
"deploy": "npm run build && npm publish"
},
"keywords": [
"abricot",
"crêpes"
],
"author": "Mrpotatosse",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.11.9",
"@types/string-template": "^1.0.2",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@fastify/websocket": "^8.1.0",
"fastify": "^4.17.0",
"frida": "^16.0.19",
"jsonpath-plus": "^7.2.0",
"node-cache": "^5.1.2",
"readline": "^1.3.0",
"string-template": "^1.0.0",
"typed-emitter": "^2.1.0",
"winston": "^3.8.2",
"yaml": "^2.3.1"
}
}