-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 916 Bytes
/
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
{
"name": "plutus-ledger-api",
"version": "1.0.0",
"description": "Plutus Ledger API types",
"type": "module",
"exports": {
"./Hex.js": "./dist/Lib/Hex.js",
"./Prelude/Instances.js": "./dist/Lib/Prelude/Instances.js",
"./V1.js": "./dist/Lib/V1.js",
"./V2.js": "./dist/Lib/V2.js",
"./PlutusData.js": "./dist/Lib/PlutusData.js",
"./AssocMap.js": "./dist/Lib/AssocMap.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "npx tsc -b src/Lib",
"test": "npx tsc -b src/Tests && node --test",
"docs": "npx typedoc"
},
"author": "Jared Pon",
"license": "ISC",
"files": [
"./dist/Lib/**/*",
"./.extra-dependencies/**/*"
],
"devDependencies": {
"@types/node": "^20.8.10",
"fast-check": "^3.14.0",
"typedoc": "^0.25.4",
"typescript": "^5.2.2"
},
"dependencies": {
"prelude": "file:.extra-dependencies/prelude"
}
}