generated from antfu/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.21 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
{
"name": "@croatialu/query-templates",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "_description_",
"author": "Croatia Lu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/croatialu",
"homepage": "https://github.com/croatialu/query-templates#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/croatialu/query-templates.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"tag": "latest"
},
"bugs": "https://github.com/croatialu/query-templates/issues",
"keywords": [],
"sideEffects": false,
"exports": {
"./vue-query.ejs": "./dist/vue-query.ejs",
"./react-query.ejs": "./dist/react-query.ejs",
"./vue-query-modular.ejs": "./dist/vue-query-modular.ejs",
"./react-query-modular.ejs": "./dist/react-query-modular.ejs"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "sh ./scripts/build.sh",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"postrelease": "npx cnpm sync @croatialu/query-templates",
"compile": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit --project tsconfig.generated.json",
"up": "taze major -I",
"prepare": "simple-git-hooks"
},
"dependencies": {},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@antfu/ni": "^23.2.0",
"@antfu/utils": "^8.0.0",
"@tanstack/react-query": "^5.64.1",
"@tanstack/vue-query": "^5.64.1",
"@types/node": "^22.10.6",
"axios": "^1.7.9",
"bumpp": "^9.10.0",
"eslint": "^9.18.0",
"esno": "^4.8.0",
"lint-staged": "^15.3.0",
"pnpm": "^9.15.4",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"swagger-typescript-api": "^13.0.23",
"taze": "^18.1.0",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}