-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@will991/dex-order-serialization-lib",
"version": "1.1.0",
"description": "A library to (de)serialize cbor from different DEXes (decentralized exchanges) to specific types for order transaction construction.",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"type": "module",
"main": "lib/cjs/index.js",
"types": "lib/cjs/index.d.ts",
"files": [
"lib/**/*",
"package.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/will991/dex-order-serialization-lib.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "yarn clean && yarn build:esm && yarn build:cjs",
"build:esm": "rollup -c rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --config jestconfig.json",
"test:cov": "jest --config jestconfig.json --coverage",
"semantic-release": "semantic-release"
},
"keywords": [
"cbor",
"plutus",
"plutus core",
"blockchain",
"cardano",
"serialization",
"dex",
"lace"
],
"author": "William Wolff",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"rollup": "^3.21.8",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@dcspark/cardano-multiplatform-lib-nodejs": "^3.1.2"
}
}