Skip to content

Commit 69240f0

Browse files
committed
chore(package): created basic package
0 parents  commit 69240f0

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
node_modules
3+
npm-debug.log
4+
dist
5+
temp

package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "graphql-codegen",
3+
"version": "0.0.1",
4+
"description": "GraphQL types and code generator based on schema",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/dotansimha/graphql-codegen.git"
12+
},
13+
"keywords": [
14+
"graphql",
15+
"codegen",
16+
"generator",
17+
"apollo",
18+
"node",
19+
"typescript",
20+
"ts",
21+
"flow",
22+
"types",
23+
"d.ts",
24+
"typings"
25+
],
26+
"author": "Dotan Simha <[email protected]>",
27+
"license": "MIT",
28+
"bugs": {
29+
"url": "https://github.com/dotansimha/graphql-codegen/issues"
30+
},
31+
"homepage": "https://github.com/dotansimha/graphql-codegen#readme"
32+
}

0 commit comments

Comments
 (0)