|
1 | 1 | { |
2 | 2 | "name": "marlowe-ts-sdk", |
3 | | - "version": "0.0.37-beta", |
4 | | - "description": "Marlowe Runtime SDK for building Marlowe Contracts", |
| 3 | + "version": "0.1.0-beta", |
| 4 | + "description": "Marlowe Runtime SDK for building and managing Marlowe Contracts", |
5 | 5 | "engines": { |
6 | 6 | "node": ">=14.20.1" |
7 | 7 | }, |
|
10 | 10 | "access": "public" |
11 | 11 | }, |
12 | 12 | "contributors": [ |
13 | | - "Nicolas Henin <nicolas.henin@iohk.io> (https://iohk.io)" |
| 13 | + "Nicolas Henin <nicolas.henin@iohk.io> (https://iohk.io)", |
| 14 | + "Hernan Rajchert <hernan.rajchert@iohk.io> (https://iohk.io)", |
| 15 | + "Bjorn Kihlberg <bjorn.kihlberg@iohk.io> (https://iohk.io)" |
14 | 16 | ], |
15 | 17 | "license": "Apache-2.0", |
16 | 18 | "scripts": { |
17 | | - "build:esm": "tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020", |
18 | | - "build:cjs": "tsc --build src", |
19 | | - "build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup", |
20 | | - "circular-deps:check": "madge --circular dist", |
21 | | - "tscNoEmit": "shx echo typescript --noEmit command not implemented yet", |
22 | | - "cleanup:dist": "shx rm -rf dist", |
23 | | - "cleanup:nm": "shx rm -rf node_modules", |
24 | | - "cleanup": "run-s cleanup:dist cleanup:nm", |
25 | | - "lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"", |
26 | | - "lint:fix": "yarn lint --fix", |
27 | | - "test": "yarn node --experimental-vm-modules $(yarn bin jest -c ./jest.config.js)", |
28 | | - "test:build:verify": "tsc --build ./test", |
29 | | - "test:e2e": "shx echo 'test:e2e' command not implemented yet", |
30 | | - "coverage": "shx echo No coverage report for this package", |
31 | | - "prepack": "yarn build" |
| 19 | + "build": "tsc --build && rollup --config rollup/legacy-runtime-esm.config.mjs", |
| 20 | + "clean": "npm run clean --workspaces && shx rm -rf dist", |
| 21 | + "test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest", |
| 22 | + "docs": "typedoc ." |
32 | 23 | }, |
| 24 | + "workspaces": [ |
| 25 | + "packages/legacy-adapter", |
| 26 | + "packages/language/core/v1", |
| 27 | + "packages/legacy-runtime" |
| 28 | + ], |
33 | 29 | "devDependencies": { |
| 30 | + "@relmify/jest-fp-ts": "^2.0.2", |
| 31 | + "@rollup/plugin-commonjs": "^25.0.3", |
| 32 | + "@rollup/plugin-node-resolve": "^15.1.0", |
34 | 33 | "@types/axios-curlirize": "^1.3.2", |
35 | 34 | "@types/deep-equal": "1.0.1", |
36 | 35 | "@types/jest": "^26.0.24", |
37 | 36 | "@types/json-bigint": "^1.0.1", |
38 | 37 | "@types/node": "^18.14.2", |
39 | | - |
40 | 38 | "eslint": "^7.32.0", |
41 | 39 | "jest": "^29.4", |
| 40 | + "jest-serial-runner": "^1.2.1", |
42 | 41 | "npm-run-all": "^4.1.5", |
43 | 42 | "prettier": "^2.3.2", |
| 43 | + "rollup": "^3.27.2", |
| 44 | + "rollup-plugin-copy": "^3.4.0", |
| 45 | + "rollup-plugin-output-size": "^1.2.2", |
44 | 46 | "shx": "^0.3.3", |
45 | 47 | "ts-jest": "^29.0.5", |
46 | | - "jest-serial-runner": "^1.2.1", |
47 | | - "@relmify/jest-fp-ts": "^2.0.2", |
48 | | - "ts-node": "^10.9.1" |
49 | | - }, |
50 | | - "dependencies": { |
51 | | - "@blockfrost/blockfrost-js": "5.2.0", |
52 | | - "@blockfrost/openapi": "0.1.54", |
53 | | - "@emurgo/cardano-serialization-lib-browser":"11.4.0", |
54 | | - "@types/deep-equal": "1.0.1", |
55 | | - "@types/qs" : "6.9.7", |
56 | | - "qs" : "6.11.1" , |
57 | | - "axios": "^1.3.3", |
58 | | - "axios-curlirize": "^2.0.0", |
59 | | - "date-fns": "2.29.3", |
60 | | - "deep-equal": "1.0.1", |
61 | | - "dotenv": "^16.0.3", |
62 | | - "fp-ts": "^2.13.1", |
63 | | - "json-bigint": "^1.0.0", |
64 | | - "lucid-cardano": "0.9.4", |
65 | | - "ts-adt": "^2.0.2", |
66 | | - "ts-pattern": "^4.2.0", |
67 | | - "retry-ts":"0.1.4", |
68 | | - "newtype-ts":"0.3.5", |
69 | | - "monocle-ts":"2.3.13", |
70 | | - "io-ts":"2.2.20", |
71 | | - "io-ts-types":"0.5.19", |
72 | | - "io-ts-bigint":"2.0.1", |
73 | | - "jsonbigint-io-ts-reporters":"2.0.1", |
| 48 | + "ts-node": "^10.9.1", |
| 49 | + "typedoc": "^0.24.8", |
74 | 50 | "typescript": "^4.9.5", |
75 | 51 | "typescript-language-server": "^3.1.0" |
76 | 52 | }, |
77 | | - "packageManager": "yarn@3.2.1" |
| 53 | + "packageManager": "npm@9.3.1" |
78 | 54 | } |
0 commit comments