forked from 0no-co/GraphQLSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "graphqlsp",
"version": "0.2.0",
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"scripts": {
"build": "pnpm --filter @0no-co/graphqlsp build",
"prepare": "husky install",
"dev": "pnpm --filter @0no-co/graphqlsp dev",
"launch-debug": "./scripts/launch-debug.sh",
"test:e2e": "vitest run --single-thread"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/plugin-transform-block-scoping": "^7.23.4",
"@babel/plugin-transform-typescript": "^7.23.6",
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^18.15.11",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"prettier": "^2.8.7",
"rollup": "^4.9.5",
"rollup-plugin-cjs-check": "^1.0.3",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
},
"pnpm": {
"overrides": {
"ua-parser-js@<0.7.33": ">=0.7.33",
"postcss@<8.4.31": ">=8.4.31",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"vite@>=4.2.0 <4.2.3": ">=4.2.3",
"json5@>=2.0.0 <2.2.2": ">=2.2.2",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
}
}