-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "purify-ts",
"version": "2.1.0",
"description": "Functional programming standard library for TypeScript ",
"repository": "https://github.com/gigobyte/purify.git",
"author": "gigobyte <[email protected]>",
"license": "ISC",
"sideEffects": false,
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"test": "vitest run --coverage",
"coverage": "coveralls < coverage/lcov.info",
"pretty": "prettier --write \"**/*.ts\""
},
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./*": {
"import": {
"types": "./esm/*.d.ts",
"default": "./esm/*.js"
},
"require": {
"types": "./*.d.ts",
"default": "./*.js"
}
}
},
"devDependencies": {
"@vitest/coverage-v8": "2.1.8",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"coveralls": "3.1.1",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"dependencies": {
"@types/json-schema": "7.0.15"
}
}