-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "unplugin-auto-import-ahooks",
"version": "0.0.3",
"description": "unplugin-auto-import-ahooks is a resolver for unplugin-auto-import that enables on-demand importing of ahooks.",
"author": "Bruce Song <recall4056@gmail.com> (https://github.com/recallwei/)",
"repository": "github:recallwei/unplugin-auto-import-ahooks",
"homepage": "https://github.com/recallwei/unplugin-auto-import-ahooks#readme",
"bugs": "https://github.com/recallwei/unplugin-auto-import-ahooks/issues",
"keywords": [
"unplugin-auto-import",
"auto-import",
"auto-import-ahooks",
"unplugin-auto-import-ahooks",
"ahooks",
"vite"
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"release:generate": "pnpm changeset",
"release:version": "pnpm changeset version",
"release:publish": "pnpm build && pnpm changeset publish",
"cspell:check": "cspell \"**\"",
"eslint:check": "eslint \"**/*.{ts,tsx}\" --color",
"eslint:fix": "pnpm eslint:check --fix",
"prettier:check": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"cz": "git-cz",
"prepare": "husky"
},
"devDependencies": {
"@bit-ocean/commitlint-config": "^0.0.17",
"@bit-ocean/cspell": "^0.0.17",
"@bit-ocean/eslint-config": "^0.0.17",
"@bit-ocean/prettier-config": "^0.0.17",
"@bit-ocean/tsconfig": "^0.0.17",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"commitizen": "^4.3.0",
"cspell": "^8.7.0",
"cz-git": "^1.9.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"unbuild": "^2.0.0"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"unplugin-auto-import": "^0.17.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"license": "MIT"
}