-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 928 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 928 Bytes
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
{
"main": "index.js",
"name": "libsession_util_nodejs",
"packageManager": "pnpm@10.28.1",
"description": "Wrappers for the Session Util Library",
"version": "0.6.12",
"license": "GPL-3.0",
"author": {
"name": "Oxen Project",
"email": "team@oxen.io"
},
"scripts": {
"clean": "rimraf .cache build",
"lint:cpp": "cppcheck --std=c++20 -j8 src",
"lint": "find src include -name '*.cpp' -o -name '*.hpp' | xargs clang-format-19 -i",
"install": "cmake-js build --runtime=electron --runtime-version=40.0.0 --CDSUBMODULE_CHECK=OFF --CDLOCAL_MIRROR=https://oxen.rocks/deps --CDENABLE_ONIONREQ=OFF --CDWITH_TESTS=OFF",
"prepare_release": "sh prepare_release.sh",
"dedup": "pnpm dedupe --check"
},
"devDependencies": {
"clang-format": "^1.8.0",
"rimraf": "2.6.2"
},
"dependencies": {
"cmake-js": "7.3.1",
"node-addon-api": "^8.3.1"
},
"typings": "index.d.ts"
}