-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1011 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
30
31
32
{
"name": "blocking-rpc",
"version": "0.0.1",
"description": "A blocking RPC implementation for use in WebAssembly imports",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "copyfiles package.json package-lock.json README.md dist/build",
"create-package-tarball": "npm run build && cd dist/build && npm pack --pack-destination=..",
"test": "node --experimental-strip-types --experimental-transform-types --disable-warning=ExperimentalWarning test/start-worker-test-runner.ts",
"lint": "eslint"
},
"type": "module",
"author": "Brandon Payton",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^24.0.3",
"copyfiles": "^2.4.1",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"prettier": "^3.6.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
},
"dependencies": {
"serialize-error": "^12.0.0"
}
}