-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "vite-plugin-graphql-loader",
"version": "4.0.4",
"description": "A Vite plugin for loading GraphQL files.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"test": "vitest",
"build": "rimraf ./dist && tsc",
"package:bump": "yarn version --patch",
"package:publish": "bun run build && bun run package:bump && npm publish",
"lint": "prettier -w src tests/**/*.ts && eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0x31/vite-plugin-graphql-loader.git"
},
"keywords": [
"vite",
"vite-plugin",
"graphql",
"graphql-tag"
],
"author": "0x31",
"license": "ISC",
"bugs": {
"url": "https://github.com/0x31/vite-plugin-graphql-loader/issues"
},
"homepage": "https://github.com/0x31/vite-plugin-graphql-loader#readme",
"dependencies": {
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"magic-string": "^0.30.10"
},
"devDependencies": {
"@babel/parser": "^7.24.8",
"@babel/traverse": "^7.24.8",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^20",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"prettier": {
"tabWidth": 4
}
}