-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hashnode-node-sdk",
"version": "3.0.0",
"description": "A javascript sdk for working with hasnode graphql api",
"keywords": [
"hashnode",
"hashnode-node-sdk",
"typescript"
],
"homepage": "https://github.com/valentinesamuel/hashnode-node-sdk",
"bugs": {
"url": "https://github.com/valentinesamuel/hashnode-node-sdk/issues"
},
"author": "Valentine Samuel",
"repository": {
"type": "git",
"url": "git+https://github.com/valentinesamuel/hashnode-node-sdk.git"
},
"files": [
"dist",
"src"
],
"type": "commonjs",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/cli": "^2.27.9",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"scripts": {
"prepare": "husky",
"build": "tsup",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "tsc",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test || true",
"test": "vitest run",
"dev": "node .testRequest.js",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"dependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.3.1",
"graphql": "^16.9.0",
"punycode": "^2.3.1"
}
}