-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.82 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@taskless/graphinql",
"description": "A minimalist GraphQL client based on phin",
"version": "4.0.0",
"author": {
"name": "Taskless.io",
"email": "[email protected]",
"url": "https://github.com/taskless/"
},
"license": "MIT",
"homepage": "https://github.com/taskless/graphinql/",
"repository": "taskless/graphinql.git",
"scripts": {
"ava": "ava",
"build": "run-s tsup",
"clean": "shx rm -rf dist && shx mkdir dist",
"dev": "tsup --watch",
"prepare": "husky install",
"rel": "release-it",
"rev": "release-it --preRelease",
"syncpack": "syncpack",
"test": "ava",
"tsup": "tsup",
"typecheck": "tsc --noEmit",
"xo": "xo"
},
"tsup": {
"entry": {
"index": "src/index.ts"
},
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true,
"minify": false
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"package.json",
"dist",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.19.0"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "18.11.18",
"ava": "^4.3.0",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"shx": "^0.3.4",
"syncpack": "^10.6.1",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^5.1.3",
"xo": "^0.54.2"
},
"publishConfig": {
"access": "public"
}
}