-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "adt-ts",
"version": "0.6.0",
"description": "TypeScript library inspired by PureScript",
"keywords": [
"adt",
"either",
"functional",
"list",
"maybe",
"pipe",
"purescript",
"typescript"
],
"repository": "github:nadameu/adt-ts",
"license": "GPL-3.0",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "run-s clean build-all",
"build-all": "run-p build-cjs build-esm",
"build-cjs": "tsc -p tsconfig-cjs.json",
"build-esm": "tsc -p tsconfig-esm.json",
"clean": "rimraf dist .rpt2_cache",
"prettier-write": "prettier --write \"./*.js\" \"src/**\" \"test/**\"",
"test": "vitest",
"test:coverage": "vitest --coverage",
"type-check": "tsc"
},
"dependencies": {
"tslib": "^2.6.1"
},
"devDependencies": {
"@types/node": "^20.4.8",
"benchmark": "^2.1.4",
"c8": "^8.0.1",
"dts-bundle": "^0.7.3",
"fast-check": "^3.12.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.27.2",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
}
}