-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·82 lines (82 loc) · 1.9 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
{
"name": "awesome-15docs",
"type": "module",
"version": "0.0.0",
"description": "",
"author": "winches",
"license": "MIT",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"generate-myself": "tsx scripts/generate-myself.ts",
"generate-work": "tsx scripts/generate-work.ts",
"generate": "pnpm run generate-myself && pnpm run generate-work"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.0",
"@iconify/vue": "^4.1.1",
"@types/node": "^18.16.5",
"@vue/runtime-core": "^3.3.4",
"busuanzi.pure.js": "^1.0.3",
"dayjs": "^1.11.7",
"dotenv": "^16.4.5",
"eslint": "^8.40.0",
"kolorist": "^1.8.0",
"lint-staged": "^13.2.2",
"rimraf": "^5.0.0",
"simple-git-hooks": "^2.8.1",
"tsx": "^4.11.0",
"typescript": "^5.0.4",
"unocss": "^0.52.4",
"unplugin-vue-components": "^0.24.1",
"vite-plugin-inspect": "^0.7.28",
"vitepress": "1.0.0-beta.1",
"vitepress-plugin-codeblocks-fold": "^1.2.28",
"vue": "^3.2.47",
"vue-reader": "^1.2.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"packageManager": "[email protected]"
}