-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 883 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 883 Bytes
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
{
"name": "fluent-dts",
"version": "23.10.1",
"description": "",
"author": "openmindlab",
"license": "MIT",
"types": "./@types/fluent/index.d.ts",
"keywords": [
"Fluent commerce"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmindlab/fluent-dts"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.11",
"@graphql-codegen/typescript": "2.8.1",
"graphql-schema-typescript": "1.5.2",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"files": [
"dist/**/*",
"resources/fluent/schema.json",
"@types/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "graphql-codegen --config graphql.yaml",
"prepare": "npm run build",
"postversion": "git push && git push --tags",
"codegen": "graphql-codegen --config graphql.yaml"
}
}