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
|
{
"name": "elrx",
"version": "0.0.0",
"description": "__",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/phenax/elrx.git",
"author": "Akshay Nair <phenax5@gmail.com>",
"license": "MIT",
"scripts": {
"tsc": "tsc --emitDeclarationOnly --outDir lib",
"test": "jest",
"format": "prettier --write ./src/**/*.ts ./tests/**/*.ts",
"build": "rimraf lib && node ./esbuild.js && npm run tsc"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"esbuild": "^0.14.10",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"fp-ts": "^2.11.6"
}
}
|