Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aichkyo

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aichkyo - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

docs/.vitepress/cache/deps/chunk-BM4PKXFJ.js

31

docs/.vitepress/cache/deps/_metadata.json
{
"hash": "eb59b7e4",
"browserHash": "59382627",
"hash": "b13aa4ac",
"browserHash": "1e9fe476",
"optimized": {

@@ -8,3 +8,3 @@ "vue": {

"file": "vue.js",
"fileHash": "306c773e",
"fileHash": "ae4e72d3",
"needsInterop": false

@@ -15,9 +15,27 @@ },

"file": "vitepress___@vue_devtools-api.js",
"fileHash": "c8d93ac2",
"fileHash": "0e81873a",
"needsInterop": false
},
"vitepress > @vueuse/integrations/useFocusTrap": {
"src": "../../../../node_modules/@vueuse/integrations/useFocusTrap.mjs",
"file": "vitepress___@vueuse_integrations_useFocusTrap.js",
"fileHash": "39dee2b9",
"needsInterop": false
},
"vitepress > mark.js/src/vanilla.js": {
"src": "../../../../node_modules/mark.js/src/vanilla.js",
"file": "vitepress___mark__js_src_vanilla__js.js",
"fileHash": "65ec55aa",
"needsInterop": false
},
"vitepress > minisearch": {
"src": "../../../../node_modules/minisearch/dist/es/index.js",
"file": "vitepress___minisearch.js",
"fileHash": "3ffbba13",
"needsInterop": false
},
"@theme/index": {
"src": "../../../../node_modules/vitepress/dist/client/theme-default/index.js",
"file": "@theme_index.js",
"fileHash": "b1e8ea80",
"fileHash": "d0da01e7",
"needsInterop": false

@@ -27,2 +45,5 @@ }

"chunks": {
"chunk-BM4PKXFJ": {
"file": "chunk-BM4PKXFJ.js"
},
"chunk-TQFIIZRC": {

@@ -29,0 +50,0 @@ "file": "chunk-TQFIIZRC.js"

158

docs/.vitepress/cache/deps/@theme_index.js
import {
useMediaQuery
} from "./chunk-BM4PKXFJ.js";
import {
computed,
getCurrentInstance,
getCurrentScope,
onMounted,
onScopeDispose,
ref,
unref,
watch,
watchEffect
watch
} from "./chunk-TQFIIZRC.js";

@@ -39,149 +36,2 @@

// node_modules/@vueuse/shared/index.mjs
function tryOnScopeDispose(fn) {
if (getCurrentScope()) {
onScopeDispose(fn);
return true;
}
return false;
}
function toValue(r) {
return typeof r === "function" ? r() : unref(r);
}
var isClient = typeof window !== "undefined" && typeof document !== "undefined";
var isIOS = getIsIOS();
function getIsIOS() {
var _a;
return isClient && ((_a = window == null ? void 0 : window.navigator) == null ? void 0 : _a.userAgent) && /iP(ad|hone|od)/.test(window.navigator.userAgent);
}
function cacheStringFunction(fn) {
const cache = /* @__PURE__ */ Object.create(null);
return (str) => {
const hit = cache[str];
return hit || (cache[str] = fn(str));
};
}
var hyphenateRE = /\B([A-Z])/g;
var hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, "-$1").toLowerCase());
var camelizeRE = /-(\w)/g;
var camelize = cacheStringFunction((str) => {
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
});
function identity(arg) {
return arg;
}
// node_modules/@vueuse/core/index.mjs
var defaultWindow = isClient ? window : void 0;
var defaultDocument = isClient ? window.document : void 0;
var defaultNavigator = isClient ? window.navigator : void 0;
var defaultLocation = isClient ? window.location : void 0;
function useMounted() {
const isMounted = ref(false);
if (getCurrentInstance()) {
onMounted(() => {
isMounted.value = true;
});
}
return isMounted;
}
function useSupported(callback) {
const isMounted = useMounted();
return computed(() => {
isMounted.value;
return Boolean(callback());
});
}
function useMediaQuery(query, options = {}) {
const { window: window2 = defaultWindow } = options;
const isSupported = useSupported(() => window2 && "matchMedia" in window2 && typeof window2.matchMedia === "function");
let mediaQuery;
const matches = ref(false);
const handler = (event) => {
matches.value = event.matches;
};
const cleanup = () => {
if (!mediaQuery)
return;
if ("removeEventListener" in mediaQuery)
mediaQuery.removeEventListener("change", handler);
else
mediaQuery.removeListener(handler);
};
const stopWatch = watchEffect(() => {
if (!isSupported.value)
return;
cleanup();
mediaQuery = window2.matchMedia(toValue(query));
if ("addEventListener" in mediaQuery)
mediaQuery.addEventListener("change", handler);
else
mediaQuery.addListener(handler);
matches.value = mediaQuery.matches;
});
tryOnScopeDispose(() => {
stopWatch();
cleanup();
mediaQuery = void 0;
});
return matches;
}
var _global = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
var globalKey = "__vueuse_ssr_handlers__";
var handlers = getHandlers();
function getHandlers() {
if (!(globalKey in _global))
_global[globalKey] = _global[globalKey] || {};
return _global[globalKey];
}
var defaultState = {
x: 0,
y: 0,
pointerId: 0,
pressure: 0,
tiltX: 0,
tiltY: 0,
width: 0,
height: 0,
twist: 0,
pointerType: null
};
var keys = Object.keys(defaultState);
var DEFAULT_UNITS = [
{ max: 6e4, value: 1e3, name: "second" },
{ max: 276e4, value: 6e4, name: "minute" },
{ max: 72e6, value: 36e5, name: "hour" },
{ max: 5184e5, value: 864e5, name: "day" },
{ max: 24192e5, value: 6048e5, name: "week" },
{ max: 28512e6, value: 2592e6, name: "month" },
{ max: Number.POSITIVE_INFINITY, value: 31536e6, name: "year" }
];
var _TransitionPresets = {
easeInSine: [0.12, 0, 0.39, 0],
easeOutSine: [0.61, 1, 0.88, 1],
easeInOutSine: [0.37, 0, 0.63, 1],
easeInQuad: [0.11, 0, 0.5, 0],
easeOutQuad: [0.5, 1, 0.89, 1],
easeInOutQuad: [0.45, 0, 0.55, 1],
easeInCubic: [0.32, 0, 0.67, 0],
easeOutCubic: [0.33, 1, 0.68, 1],
easeInOutCubic: [0.65, 0, 0.35, 1],
easeInQuart: [0.5, 0, 0.75, 0],
easeOutQuart: [0.25, 1, 0.5, 1],
easeInOutQuart: [0.76, 0, 0.24, 1],
easeInQuint: [0.64, 0, 0.78, 0],
easeOutQuint: [0.22, 1, 0.36, 1],
easeInOutQuint: [0.83, 0, 0.17, 1],
easeInExpo: [0.7, 0, 0.84, 0],
easeOutExpo: [0.16, 1, 0.3, 1],
easeInOutExpo: [0.87, 0, 0.13, 1],
easeInCirc: [0.55, 0, 1, 0.45],
easeOutCirc: [0, 0.55, 0.45, 1],
easeInOutCirc: [0.85, 0, 0.15, 1],
easeInBack: [0.36, 0, 0.66, -0.56],
easeOutBack: [0.34, 1.56, 0.64, 1],
easeInOutBack: [0.68, -0.6, 0.32, 1.6]
};
var TransitionPresets = Object.assign({}, { linear: identity }, _TransitionPresets);
// node_modules/vitepress/dist/client/shared.js

@@ -188,0 +38,0 @@ var inBrowser = typeof document !== "undefined";

module.exports = {
title: 'Hello VitePress',
title: 'AickKyo Docs',
description: 'Just playing around.',
lang: 'zh-CN',
// 主题配置
themeConfig: {
logo: { src: '/logo.png',},
siteTitle: '前端',
siteTitle: false,
logo: '/logo.png',
head: [
['link', { rel: 'icon', href: '/logo.png' }]
],
search: {
provider: 'local'
},
nav: [
{ text: 'Home', link: '/' }
// { text: 'Home', link: '/' },
{ text: 'hr公共组件', link: '/hr-components/', activeMatch: '/hr-components/' },
{
text: '技术分享',
items: [
{ text: 'npm包', link: '/share/npmPackage' },
{ text: 'Item B', link: '/item-2' },
{
// Title for the section.
text: 'Section A Title',
items: [
{ text: 'Section A Item A', link: '...' },
{ text: 'Section B Item B', link: '...' }
]
}
]
},
{ text: 'Changelog', link: 'https://github.com/...' }
],
sidebar: {
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' },
{ icon: 'twitter', link: '...' },
// You can also add custom icons by passing SVG as string:
{
icon: {
svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Dribbble</title><path d="M12...6.38z"/></svg>'
},
link: '...',
// You can include a custom label for accessibility too (optional but recommended):
ariaLabel: 'cool link'
}
],
}
sidebar: [
{
text: 'Section Title A',
collapsed: false,
items: [
{ text: 'Item A', link: '/item-a' },
{ text: 'Item B', link: '/item-b' },
]
},
{
text: 'Section Title B',
collapsed: true,
items: [
{ text: 'Item C', link: '/item-c' },
{ text: 'Item D', link: '/item-d' },
]
}
],
// footer: {
// message: 'Released under the <a href="https://github.com/vuejs/vitepress/blob/main/LICENSE">MIT License</a>.',
// copyright: 'Copyright © 2019-present <a href="https://github.com/yyx990803">Evan You</a>'
// }
},
head: [
['link', { rel: 'icon', href: '/favicon.png' }]
]
}
---
home: true
heroImage: /logo.png
heroAlt: Logo image
heroText: Hero Title2
tagline: Hero subtitle
actionText: Get Started
actionLink: /guide/
layout: home
hero:
name: HR-OA-KTS
text: 一个很牛逼且快乐积极和谐的前端开发团队.
tagline:
image:
src: /logo.png
alt: VitePress
actions:
- theme: brand
text: 了解我们
link: /hr-components/index
- theme: alt
text: 我们的主页
link: https://github.com/vuejs/vitepress
features:
- title: 简单快速
- details: 基于 VuePress 构建,并使用了 Vue 单文件组件 (SFC)。
- title: 简洁至上
- details: 以 Markdown 为中心的项目结构,以最少的配置帮助你专注于写作。
- title: Vue-Powered
- details: 享受 Vue + webpack 带来的开发体验,使用 Vue 组件创建内容,使用 Markdown 创建页面。
- title: Performant
- details: Vite 驱动,PWA 支持,高性能、高加载速度。
- icon: 🛠️
title: 总而言之,言而总之
details: 学就完了
- icon:
src: /cool-feature-icon.svg
title: 互相学习,互为导师
details: 共同进步
- icon:
dark: /dark-feature-icon.svg
light: /light-feature-icon.svg
title: Another cool feature
details: Lorem ipsum...
---
# Hello KUAYUE-EXPRESS
<!-- -->
{
"name": "aichkyo",
"version": "1.0.0",
"version": "1.0.1",
"description": "AichKyo 的文档",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc