-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "@open-rpc/typings",
"private": false,
"version": "0.0.0-semantic-release-dev",
"description": "",
"main": "build/index.js",
"bin": {
"open-rpc-typings": "build/cli.js"
},
"scripts": {
"build": "tsc",
"generate:typings": "build/cli.js",
"test": "npm run build && npm run test:unit",
"test:unit": "jest --coverage",
"watch:test": "jest --watch"
},
"files": [
"build",
"!build/*.test.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpc/typings.git"
},
"author": "",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/open-rpc/typings/issues"
},
"homepage": "https://github.com/open-rpc/typings#readme",
"dependencies": {
"@json-schema-tools/titleizer": "1.0.9",
"@json-schema-tools/transpiler": "^1.10.5",
"@open-rpc/schema-utils-js": "2.0.2",
"commander": "^6.0.0",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@open-rpc/examples": "1.7.2",
"@open-rpc/meta-schema": "1.14.9",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^29.5.12",
"jest": "^29.1.2",
"ts-jest": "^29.1.2",
"typedoc": "0.25.13",
"typescript": "4.9.5"
}
}