-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 661 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "quicktype-graphql-input",
"version": "18.0.15",
"package": "Package for using GraphQL as an input language to quicktype",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/quicktype/quicktype",
"scripts": {
"clean": "rm -rf dist node_modules *~",
"build": "tsc"
},
"dependencies": {
"quicktype-core": "file:../quicktype-core",
"collection-utils": "^1.0.1",
"graphql": "^16.11.0"
},
"devDependencies": {
"@types/node": "~22.14.0",
"typescript": "~5.8.3"
},
"files": ["dist"]
}