-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.92 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
53
54
55
56
57
58
{
"name": "@harmoniclabs/shared-header-pool-ts",
"version": "0.0.0-dev0",
"description": "implementation of the cardano mempool based on SharedArrayBuffer in typescript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {
"worker_threads": false,
"node:fs": false,
"fs": false
},
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:debug": "node --nolazy --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --colors --verbose",
"clear-jest": "jest --clearCache",
"test-watch": "jest --watchman",
"test-coverage": "jest --coverage",
"build": "rm -rf ./dist && tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"build:light": "tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"buidl": "npm run build",
"ci": "npm i && npm run test && npm run build",
"start": "npm run build:light && npm run start:light",
"start:light": "node --enable-source-maps dist/index.js",
"dbg": "node --trace_gc --max-old-space-size=24576 --enable-source-maps dist/index.js",
"pub": "npm run ci && npm pub",
"bench:task": "npx tsx src/__bench__/task-workers/index.ts",
"bench:simulation": "npx tsx src/__bench__/task-workers/index.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Michele Nuzzi",
"license": "",
"repository": {
"type": "git",
"url": "git+https://github.com/HarmonicLabs/plu-ts.git"
},
"bugs": {
"url": "https://github.com/HarmonicLabs/plu-ts/issues"
},
"homepage": "https://github.com/HarmonicLabs/plu-ts#readme",
"dependencies": {
"@harmoniclabs/uint8array-utils": "^1.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/node": "^18.14.6",
"jest": "^29.4.3",
"tsc-alias": "^1.7.1",
"typescript": "^4.6.3"
}
}