-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 KB
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
59
60
61
{
"name": "@helios-lang/effect",
"version": "0.4.45",
"description": "",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./Cardano": {
"default": "./dist/Cardano/index.js",
"import": "./dist/Cardano/index.js",
"types": "./types/Cardano/index.d.ts"
},
"./Codecs": {
"default": "./dist/Codecs/index.js",
"import": "./dist/Codecs/index.js",
"types": "./types/Codecs/index.d.ts"
},
"./Crypto": {
"default": "./dist/Crypto/index.js",
"import": "./dist/Crypto/index.js",
"types": "./types/Crypto/index.d.ts"
}
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"lint": "eslint",
"prepack": "pnpm run build",
"prettify": "prettier . --write",
"test": "pnpm run test:types && pnpm run lint && pnpm run test:suite",
"test:suite": "bun test .",
"test:types": "tsc -p ./tsconfig.json"
},
"keywords": [],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"packageManager": "pnpm@10.20.0",
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": false
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bun": "^1.3.4",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"dependencies": {
"effect": "^3.19.12"
}
}