详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
44 lines
725 B
JSON
44 lines
725 B
JSON
{
|
|
"name": "yocto-queue",
|
|
"version": "0.1.0",
|
|
"description": "Tiny queue data structure",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/yocto-queue",
|
|
"funding": "https://github.com/sponsors/sindresorhus",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava && tsd"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"queue",
|
|
"data",
|
|
"structure",
|
|
"algorithm",
|
|
"queues",
|
|
"queuing",
|
|
"list",
|
|
"array",
|
|
"linkedlist",
|
|
"fifo",
|
|
"enqueue",
|
|
"dequeue",
|
|
"data-structure"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^2.4.0",
|
|
"tsd": "^0.13.1",
|
|
"xo": "^0.35.0"
|
|
}
|
|
}
|