-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
33 lines (33 loc) · 1.11 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
{
"name": "@loopholelabs/scale",
"version": "0.4.7",
"description": "Scale is a framework for building high-performance plugin systems into any application, all powered by WebAssembly.",
"source": "index.ts",
"types": "types.d.ts",
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf dist && tsc --outDir dist && cp package.json dist && cp README.md dist",
"lint": "eslint . --ext .ts",
"test": "node --experimental-wasi-unstable-preview1 --trace-warnings node_modules/.bin/jest --no-cache"
},
"dependencies": {
"@loopholelabs/polyglot": "^2.0.1",
"@loopholelabs/scale-extension-interfaces": "^0.1.2",
"@loopholelabs/scale-signature-interfaces": "^0.1.7",
"buffer": "^6.0.3",
"fast-sha256": "^1.3.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}