-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
50
51
52
53
54
55
56
{
"name": "@contentstack/types-generator",
"version": "2.0.3",
"description": "Contentstack type definition generation library",
"private": false,
"author": "Contentstack",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsup",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/types-generator"
},
"keywords": [
"contentstack",
"typescript",
"tsgen",
"types",
"generator"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/contentstack/types-generator/issues"
},
"homepage": "https://github.com/contentstack/types-generator",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"axios-mock-adapter": "^1.22.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"nock": "^13.5.4",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@contentstack/delivery-sdk": "^4.4.3",
"@gql2ts/from-schema": "^2.0.0-4",
"axios": "^1.7.8",
"lodash": "^4.17.21",
"prettier": "^3.3.3"
},
"files": [
"dist",
"package.json",
"README.md"
]
}