-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
97 lines (97 loc) · 2.96 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "villus-monorepo",
"private": true,
"type": "module",
"packageManager": "[email protected]+sha256.43abf6e720fb7bc53c591b0862605c7d323d0a9d2dd33bcac07b062e13cf4948",
"scripts": {
"docs:dev": "cd ./docs && npm run dev && cd -",
"docs:build": "cd ./docs && npm run build && cd -",
"docs:deploy": "./scripts/deploy-docs.sh",
"test": "vitest",
"test:ci": "vitest",
"cover": "vitest run --coverage",
"cover:ci": "vitest run --coverage",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"build": "tsx scripts/build.ts",
"postversion": "npm run build",
"format": "prettier ./packages/**/*.ts --write",
"typecheck": "pnpm tsc --noEmit --project ./tsconfig.json --skipLibCheck",
"prepare": "husky",
"ci:copy-mds": "tsx scripts/copy-mds.ts",
"ci:publish": "pnpm build && pnpm publish --provenance --access public -r",
"ci:version": "pnpm changeset version && pnpm ci:copy-mds",
"ci:tag": "tsx ./scripts/tag-release.ts"
},
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.3",
"@changesets/cli": "^2.27.2",
"@commitlint/cli": "^19.3.0",
"@eslint/js": "^9.3.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@shikijs/transformers": "^1.5.2",
"@types/graphql": "^14.5.0",
"@types/node-fetch": "^2.6.11",
"@vitest/coverage-v8": "^3.0.2",
"@vue/compiler-sfc": "^3.4.27",
"bundlesize": "^0.18.2",
"chalk": "^5.3.0",
"consola": "^3.4.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0",
"filesize": "^10.1.2",
"flush-promises": "^1.0.2",
"fs-extra": "^11.2.0",
"globals": "^15.2.0",
"gql.tada": "^1.7.5",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.16.0",
"gzip-size": "^7.0.0",
"husky": "^9.0.11",
"jsdom": "^26.0.0",
"lint-staged": "^15.2.2",
"mkdirp": "^3.0.1",
"msw": "^1.2.3",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"rollup": "^4.31.0",
"rollup-plugin-dts": "^6.1.1",
"terser": "^5.31.0",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.20.0",
"vitest": "^3.0.2",
"vue": "^3.4.27",
"wait-for-expect": "^3.0.2"
},
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "10 kB"
}
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"vitest run related --passWithNoTests"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}