-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 KB
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
{
"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.2.1",
"commander": "^6.0.0",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@open-rpc/examples": "1.7.2",
"@open-rpc/spec-types": "0.0.2",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^29.5.12",
"jest": "^29.1.2",
"ts-jest": "29.4.6",
"typedoc": "0.25.13",
"typescript": "5.4.5"
}
}