-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "orchestration-api-spec",
"version": "0.1.0",
"description": "Proposed API for cross-chain orchestration on Agoric",
"type": "module",
"scripts": {
"docs": "typedoc",
"format": "prettier --write src",
"lint": "eslint . --ext ts --report-unused-disable-directives",
"lint:fix": "yarn lint --fix",
"test": "ava"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/eslint": "^8",
"@types/node": "^20.11.13",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"ava": "^6.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"tsimp": "^2.0.10",
"typedoc": "^0.25.12",
"typescript": "^5.3.3"
},
"dependencies": {
"@agoric/ertp": "0.16.3-dev-00cccfc.0",
"@agoric/time": "0.3.3-u14.0",
"@agoric/zoe": "0.26.3-dev-00cccfc.0",
"@cosmjs/amino": "^0.32.2",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@endo/far": "^1.1.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp/import"
],
"files": [
"test/**/*.test.ts"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"license": "Apache-2.0"
}