-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.88 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
75
76
77
78
79
80
81
{
"name": "marlowe-ts-sdk",
"version": "0.4.0-beta",
"description": "Marlowe Runtime SDK for building and managing Marlowe Contracts",
"engines": {
"node": ">=14.20.1"
},
"repository": "https://github.com/input-output-hk/marlowe-ts-sdk",
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"contributors": [
"Nicolas Henin <[email protected]> (https://iohk.io)",
"Hernan Rajchert <[email protected]> (https://iohk.io)"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc --version && tsc --build && shx mkdir -p dist && rollup --config rollup/config.mjs",
"clean": "npm run clean --workspaces && shx rm -rf dist",
"test": "tsc --build tsconfig.test.json && NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --config ./jest.unit.config.js --verbose",
"test:e2e": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --runInBand --config ./jest.e2e.config.js --verbose",
"docs": "typedoc . --treatWarningsAsErrors --options ./typedoc.json",
"serve": "ws --port 1337 --rewrite '/importmap -> https://cdn.jsdelivr.net/gh/input-output-hk/[email protected]/jsdelivr-npm-importmap.js'",
"serve-dev": "ws --port 1337 --rewrite '/importmap -> /dist/local-importmap.js'",
"format": "npx prettier --write .",
"postinstall": "cd examples/nodejs && npm install"
},
"workspaces": [
"packages/adapter",
"packages/marlowe-template",
"packages/language/core/v1",
"packages/language/examples",
"packages/language/specification-client",
"packages/token-metadata-client",
"packages/wallet",
"packages/runtime/client/rest",
"packages/runtime/core",
"packages/runtime/lifecycle",
"packages/marlowe-object",
"packages/testing-kit"
],
"devDependencies": {
"@blockfrost/blockfrost-js": "5.2.0",
"@blockfrost/openapi": "0.1.54",
"@relmify/jest-fp-ts": "^2.0.2",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-wasm": "^6.1.3",
"@types/axios-curlirize": "^1.3.2",
"@types/deep-equal": "1.0.1",
"@types/jest": "^26.0.24",
"@types/json-bigint": "^1.0.1",
"@types/node": "^18.14.2",
"@types/qs": "6.9.7",
"axios-curlirize": "2.0.0",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"http-server": "^14.1.1",
"jest": "^29.4",
"jest-serial-runner": "^1.2.1",
"local-web-server": "^5.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup": "^3.27.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-output-size": "^1.2.2",
"rollup-plugin-visualizer": "^5.9.2",
"shx": "^0.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^4.9.5",
"typescript-language-server": "^3.1.0"
},
"packageManager": "[email protected]"
}