sillyspec 3.8.5 → 3.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -6
- package/docs/.vitepress/config.mts +45 -0
- package/docs/.vitepress/dist/404.html +25 -0
- package/docs/.vitepress/dist/assets/app.YytxICdd.js +1 -0
- package/docs/.vitepress/dist/assets/chunks/framework.Czhw_PXq.js +19 -0
- package/docs/.vitepress/dist/assets/chunks/theme.DusTRZQk.js +1 -0
- package/docs/.vitepress/dist/assets/index.md.C3VCvtQA.js +1 -0
- package/docs/.vitepress/dist/assets/index.md.C3VCvtQA.lean.js +1 -0
- package/docs/.vitepress/dist/assets/inter-italic-cyrillic-ext.r48I6akx.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-cyrillic.By2_1cv3.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-greek-ext.1u6EdAuj.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-greek.DJ8dCoTZ.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-latin-ext.CN1xVJS-.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-latin.C2AdPX0b.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-vietnamese.BSbpV94h.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-cyrillic.C5lxZ8CY.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-greek-ext.CqjqNYQ-.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-greek.BBVDIX6e.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-latin-ext.4ZJIpNVo.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-latin.Di8DUHzh.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-vietnamese.BjW4sHH5.woff2 +0 -0
- package/docs/.vitepress/dist/assets/sillyspec_commands.md.CXFFsj08.js +15 -0
- package/docs/.vitepress/dist/assets/sillyspec_commands.md.CXFFsj08.lean.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_dashboard.md.BuPXHqjX.js +4 -0
- package/docs/.vitepress/dist/assets/sillyspec_dashboard.md.BuPXHqjX.lean.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_file-io.md.Cz3x7llx.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_file-io.md.Cz3x7llx.lean.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_getting-started.md.ClcvV8k3.js +4 -0
- package/docs/.vitepress/dist/assets/sillyspec_getting-started.md.ClcvV8k3.lean.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_install.md.CKuR2tiT.js +5 -0
- package/docs/.vitepress/dist/assets/sillyspec_install.md.CKuR2tiT.lean.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_lifecycle.md.DY293cR1.js +28 -0
- package/docs/.vitepress/dist/assets/sillyspec_lifecycle.md.DY293cR1.lean.js +1 -0
- package/docs/.vitepress/dist/assets/sillyspec_structure.md.sVYS4zPs.js +30 -0
- package/docs/.vitepress/dist/assets/sillyspec_structure.md.sVYS4zPs.lean.js +1 -0
- package/docs/.vitepress/dist/assets/style.DFTx90Kk.css +1 -0
- package/docs/.vitepress/dist/hashmap.json +1 -0
- package/docs/.vitepress/dist/index.html +28 -0
- package/docs/.vitepress/dist/sillyspec/commands.html +42 -0
- package/docs/.vitepress/dist/sillyspec/dashboard.html +31 -0
- package/docs/.vitepress/dist/sillyspec/file-io.html +28 -0
- package/docs/.vitepress/dist/sillyspec/getting-started.html +31 -0
- package/docs/.vitepress/dist/sillyspec/install.html +32 -0
- package/docs/.vitepress/dist/sillyspec/lifecycle.html +55 -0
- package/docs/.vitepress/dist/sillyspec/structure.html +57 -0
- package/docs/.vitepress/dist/vp-icons.css +1 -0
- package/docs/index.md +34 -0
- package/docs/sillyspec/commands.md +218 -0
- package/docs/sillyspec/dashboard.md +51 -0
- package/docs/sillyspec/file-io.md +34 -0
- package/docs/sillyspec/getting-started.md +61 -0
- package/docs/sillyspec/install.md +51 -0
- package/docs/sillyspec/lifecycle.md +146 -0
- package/docs/sillyspec/structure.md +62 -0
- package/package.json +11 -9
- package/packages/dashboard/dist/assets/index-Bh-GPjKY.css +1 -0
- package/packages/dashboard/dist/assets/index-CrCn5Gg6.js +17 -0
- package/packages/dashboard/dist/index.html +2 -2
- package/packages/dashboard/package-lock.json +0 -220
- package/packages/dashboard/package.json +5 -8
- package/packages/dashboard/server/index.js +106 -255
- package/packages/dashboard/server/parser.js +29 -333
- package/packages/dashboard/server/watcher.js +131 -203
- package/packages/dashboard/src/App.vue +10 -181
- package/packages/dashboard/src/components/ActionBar.vue +42 -26
- package/packages/dashboard/src/components/CommandPalette.vue +65 -40
- package/packages/dashboard/src/components/DetailPanel.vue +53 -68
- package/packages/dashboard/src/components/LogStream.vue +33 -13
- package/packages/dashboard/src/components/PipelineStage.vue +8 -8
- package/packages/dashboard/src/components/PipelineView.vue +45 -80
- package/packages/dashboard/src/components/ProjectList.vue +45 -103
- package/packages/dashboard/src/components/StageBadge.vue +13 -13
- package/packages/dashboard/src/components/StepCard.vue +15 -15
- package/packages/dashboard/src/composables/useDashboard.js +6 -20
- package/packages/dashboard/src/composables/useKeyboard.js +4 -6
- package/packages/dashboard/src/main.js +1 -4
- package/packages/dashboard/src/style.css +17 -17
- package/src/index.js +12 -123
- package/src/init.js +227 -86
- package/src/setup.js +9 -1
- package/templates/archive.md +120 -0
- package/templates/brainstorm.md +170 -0
- package/{.claude/skills/sillyspec-commit/SKILL.md → templates/commit.md} +45 -29
- package/templates/continue.md +32 -0
- package/templates/execute.md +304 -0
- package/templates/explore.md +59 -0
- package/templates/export.md +21 -0
- package/templates/init.md +61 -0
- package/templates/plan.md +146 -0
- package/templates/quick.md +135 -0
- package/templates/scan-quick.md +49 -0
- package/templates/scan.md +156 -0
- package/templates/skills/playwright-e2e/SKILL.md +340 -0
- package/templates/status.md +75 -0
- package/templates/verify.md +236 -0
- package/templates/workspace-sync.md +99 -0
- package/templates/workspace.md +70 -0
- package/.claude/skills/sillyspec-archive/SKILL.md +0 -17
- package/.claude/skills/sillyspec-auto/SKILL.md +0 -77
- package/.claude/skills/sillyspec-brainstorm/SKILL.md +0 -17
- package/.claude/skills/sillyspec-continue/SKILL.md +0 -44
- package/.claude/skills/sillyspec-doctor/SKILL.md +0 -22
- package/.claude/skills/sillyspec-execute/SKILL.md +0 -17
- package/.claude/skills/sillyspec-explore/SKILL.md +0 -96
- package/.claude/skills/sillyspec-export/SKILL.md +0 -53
- package/.claude/skills/sillyspec-init/SKILL.md +0 -170
- package/.claude/skills/sillyspec-plan/SKILL.md +0 -52
- package/.claude/skills/sillyspec-propose/SKILL.md +0 -17
- package/.claude/skills/sillyspec-quick/SKILL.md +0 -17
- package/.claude/skills/sillyspec-resume/SKILL.md +0 -111
- package/.claude/skills/sillyspec-scan/SKILL.md +0 -17
- package/.claude/skills/sillyspec-state/SKILL.md +0 -54
- package/.claude/skills/sillyspec-status/SKILL.md +0 -17
- package/.claude/skills/sillyspec-verify/SKILL.md +0 -17
- package/.claude/skills/sillyspec-workspace/SKILL.md +0 -149
- package/.sillyspec/changes/archive/2026-04-08-derive-state/design.md +0 -97
- package/.sillyspec/changes/archive/2026-04-08-derive-state/plan.md +0 -51
- package/.sillyspec/changes/archive/2026-04-08-derive-state/proposal.md +0 -29
- package/.sillyspec/changes/archive/2026-04-08-derive-state/requirements.md +0 -34
- package/.sillyspec/changes/archive/2026-04-08-derive-state/tasks.md +0 -13
- package/.sillyspec/changes/archive/2026-04-08-derive-state/verify-result.md +0 -43
- package/.sillyspec/changes/auto-mode/design.md +0 -50
- package/.sillyspec/changes/auto-mode/proposal.md +0 -19
- package/.sillyspec/changes/auto-mode/requirements.md +0 -21
- package/.sillyspec/changes/auto-mode/tasks.md +0 -7
- package/.sillyspec/changes/brainstorm-archive/2026-04-05-unified-docs-design.md +0 -199
- package/.sillyspec/changes/dashboard/design.md.braindraft +0 -206
- package/.sillyspec/changes/run-command-design/design.md +0 -1230
- package/.sillyspec/changes/unified-docs-design/design.md +0 -199
- package/.sillyspec/docs/sillyspec/scan/.gitkeep +0 -0
- package/.sillyspec/knowledge/INDEX.md +0 -8
- package/.sillyspec/knowledge/uncategorized.md +0 -3
- package/.sillyspec/projects/sillyspec.yaml +0 -3
- package/packages/dashboard/dist/assets/index-D1EVTLmc.js +0 -7446
- package/packages/dashboard/dist/assets/index-DGe8CqeP.css +0 -1
- package/packages/dashboard/public/logo.jpg +0 -0
- package/packages/dashboard/src/components/DocPreview.vue +0 -160
- package/packages/dashboard/src/components/DocTree.vue +0 -58
- package/packages/dashboard/src/components/ProjectOverview.vue +0 -178
- package/packages/dashboard/src/components/detail/DocsDetail.vue +0 -48
- package/packages/dashboard/src/components/detail/GitDetail.vue +0 -61
- package/packages/dashboard/src/components/detail/TechDetail.vue +0 -43
- package/src/derive.js +0 -147
- package/src/migrate.js +0 -117
- package/src/progress.js +0 -495
- package/src/run.js +0 -640
- package/src/stages/archive.js +0 -54
- package/src/stages/brainstorm.js +0 -239
- package/src/stages/doctor.js +0 -312
- package/src/stages/execute.js +0 -259
- package/src/stages/index.js +0 -35
- package/src/stages/plan.js +0 -259
- package/src/stages/propose.js +0 -115
- package/src/stages/quick.js +0 -64
- package/src/stages/scan.js +0 -141
- package/src/stages/status.js +0 -65
- package/src/stages/verify.js +0 -135
- /package/.sillyspec/{changes/brainstorm-archive → specs}/2026-04-05-dashboard-design.md +0 -0
- /package/{packages/dashboard → docs/.vitepress}/dist/favicon.jpg +0 -0
- /package/{logo.jpg → docs/.vitepress/dist/logo.jpg} +0 -0
- /package/{packages/dashboard → docs}/public/favicon.jpg +0 -0
- /package/{packages/dashboard/dist → docs/public}/logo.jpg +0 -0
|
@@ -8,10 +8,7 @@
|
|
|
8
8
|
"name": "@sillyspec/dashboard",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@vicons/ionicons5": "^0.13.0",
|
|
12
11
|
"chokidar": "^4.0",
|
|
13
|
-
"marked": "^17.0.6",
|
|
14
|
-
"naive-ui": "^2.44.1",
|
|
15
12
|
"open": "^10.1",
|
|
16
13
|
"vue": "^3.5",
|
|
17
14
|
"ws": "^8.18"
|
|
@@ -69,30 +66,6 @@
|
|
|
69
66
|
"node": ">=6.9.0"
|
|
70
67
|
}
|
|
71
68
|
},
|
|
72
|
-
"node_modules/@css-render/plugin-bem": {
|
|
73
|
-
"version": "0.15.14",
|
|
74
|
-
"resolved": "https://registry.npmmirror.com/@css-render/plugin-bem/-/plugin-bem-0.15.14.tgz",
|
|
75
|
-
"integrity": "sha512-QK513CJ7yEQxm/P3EwsI+d+ha8kSOcjGvD6SevM41neEMxdULE+18iuQK6tEChAWMOQNQPLG/Rw3Khb69r5neg==",
|
|
76
|
-
"license": "MIT",
|
|
77
|
-
"peerDependencies": {
|
|
78
|
-
"css-render": "~0.15.14"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
"node_modules/@css-render/vue3-ssr": {
|
|
82
|
-
"version": "0.15.14",
|
|
83
|
-
"resolved": "https://registry.npmmirror.com/@css-render/vue3-ssr/-/vue3-ssr-0.15.14.tgz",
|
|
84
|
-
"integrity": "sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==",
|
|
85
|
-
"license": "MIT",
|
|
86
|
-
"peerDependencies": {
|
|
87
|
-
"vue": "^3.0.11"
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
"node_modules/@emotion/hash": {
|
|
91
|
-
"version": "0.8.0",
|
|
92
|
-
"resolved": "https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz",
|
|
93
|
-
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==",
|
|
94
|
-
"license": "MIT"
|
|
95
|
-
},
|
|
96
69
|
"node_modules/@esbuild/aix-ppc64": {
|
|
97
70
|
"version": "0.25.12",
|
|
98
71
|
"resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
@@ -584,12 +557,6 @@
|
|
|
584
557
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
585
558
|
}
|
|
586
559
|
},
|
|
587
|
-
"node_modules/@juggle/resize-observer": {
|
|
588
|
-
"version": "3.4.0",
|
|
589
|
-
"resolved": "https://registry.npmmirror.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz",
|
|
590
|
-
"integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==",
|
|
591
|
-
"license": "Apache-2.0"
|
|
592
|
-
},
|
|
593
560
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
594
561
|
"version": "4.60.1",
|
|
595
562
|
"resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz",
|
|
@@ -1219,27 +1186,6 @@
|
|
|
1219
1186
|
"dev": true,
|
|
1220
1187
|
"license": "MIT"
|
|
1221
1188
|
},
|
|
1222
|
-
"node_modules/@types/lodash": {
|
|
1223
|
-
"version": "4.17.24",
|
|
1224
|
-
"resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
|
|
1225
|
-
"integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
|
|
1226
|
-
"license": "MIT"
|
|
1227
|
-
},
|
|
1228
|
-
"node_modules/@types/lodash-es": {
|
|
1229
|
-
"version": "4.17.12",
|
|
1230
|
-
"resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
|
|
1231
|
-
"integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
|
|
1232
|
-
"license": "MIT",
|
|
1233
|
-
"dependencies": {
|
|
1234
|
-
"@types/lodash": "*"
|
|
1235
|
-
}
|
|
1236
|
-
},
|
|
1237
|
-
"node_modules/@vicons/ionicons5": {
|
|
1238
|
-
"version": "0.13.0",
|
|
1239
|
-
"resolved": "https://registry.npmmirror.com/@vicons/ionicons5/-/ionicons5-0.13.0.tgz",
|
|
1240
|
-
"integrity": "sha512-zvZKBPjEXKN7AXNo2Na2uy+nvuv6SP4KAMQxpKL2vfHMj0fSvuw7JZcOPCjQC3e7ayssKnaoFVAhbYcW6v41qQ==",
|
|
1241
|
-
"license": "MIT"
|
|
1242
|
-
},
|
|
1243
1189
|
"node_modules/@vitejs/plugin-vue": {
|
|
1244
1190
|
"version": "5.2.4",
|
|
1245
1191
|
"resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
|
|
@@ -1354,12 +1300,6 @@
|
|
|
1354
1300
|
"integrity": "sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==",
|
|
1355
1301
|
"license": "MIT"
|
|
1356
1302
|
},
|
|
1357
|
-
"node_modules/async-validator": {
|
|
1358
|
-
"version": "4.2.5",
|
|
1359
|
-
"resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
|
|
1360
|
-
"integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
|
|
1361
|
-
"license": "MIT"
|
|
1362
|
-
},
|
|
1363
1303
|
"node_modules/bundle-name": {
|
|
1364
1304
|
"version": "4.1.0",
|
|
1365
1305
|
"resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-4.1.0.tgz",
|
|
@@ -1390,47 +1330,12 @@
|
|
|
1390
1330
|
"url": "https://paulmillr.com/funding/"
|
|
1391
1331
|
}
|
|
1392
1332
|
},
|
|
1393
|
-
"node_modules/css-render": {
|
|
1394
|
-
"version": "0.15.14",
|
|
1395
|
-
"resolved": "https://registry.npmmirror.com/css-render/-/css-render-0.15.14.tgz",
|
|
1396
|
-
"integrity": "sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==",
|
|
1397
|
-
"license": "MIT",
|
|
1398
|
-
"dependencies": {
|
|
1399
|
-
"@emotion/hash": "~0.8.0",
|
|
1400
|
-
"csstype": "~3.0.5"
|
|
1401
|
-
}
|
|
1402
|
-
},
|
|
1403
|
-
"node_modules/css-render/node_modules/csstype": {
|
|
1404
|
-
"version": "3.0.11",
|
|
1405
|
-
"resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.0.11.tgz",
|
|
1406
|
-
"integrity": "sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==",
|
|
1407
|
-
"license": "MIT"
|
|
1408
|
-
},
|
|
1409
1333
|
"node_modules/csstype": {
|
|
1410
1334
|
"version": "3.2.3",
|
|
1411
1335
|
"resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
|
|
1412
1336
|
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
1413
1337
|
"license": "MIT"
|
|
1414
1338
|
},
|
|
1415
|
-
"node_modules/date-fns": {
|
|
1416
|
-
"version": "4.1.0",
|
|
1417
|
-
"resolved": "https://registry.npmmirror.com/date-fns/-/date-fns-4.1.0.tgz",
|
|
1418
|
-
"integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==",
|
|
1419
|
-
"license": "MIT",
|
|
1420
|
-
"funding": {
|
|
1421
|
-
"type": "github",
|
|
1422
|
-
"url": "https://github.com/sponsors/kossnocorp"
|
|
1423
|
-
}
|
|
1424
|
-
},
|
|
1425
|
-
"node_modules/date-fns-tz": {
|
|
1426
|
-
"version": "3.2.0",
|
|
1427
|
-
"resolved": "https://registry.npmmirror.com/date-fns-tz/-/date-fns-tz-3.2.0.tgz",
|
|
1428
|
-
"integrity": "sha512-sg8HqoTEulcbbbVXeg84u5UnlsQa8GS5QXMqjjYIhS4abEVVKIUwe0/l/UhrZdKaL/W5eWZNlbTeEIiOXTcsBQ==",
|
|
1429
|
-
"license": "MIT",
|
|
1430
|
-
"peerDependencies": {
|
|
1431
|
-
"date-fns": "^3.0.0 || ^4.0.0"
|
|
1432
|
-
}
|
|
1433
|
-
},
|
|
1434
1339
|
"node_modules/default-browser": {
|
|
1435
1340
|
"version": "5.5.0",
|
|
1436
1341
|
"resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-5.5.0.tgz",
|
|
@@ -1555,12 +1460,6 @@
|
|
|
1555
1460
|
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
1556
1461
|
"license": "MIT"
|
|
1557
1462
|
},
|
|
1558
|
-
"node_modules/evtd": {
|
|
1559
|
-
"version": "0.2.4",
|
|
1560
|
-
"resolved": "https://registry.npmmirror.com/evtd/-/evtd-0.2.4.tgz",
|
|
1561
|
-
"integrity": "sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==",
|
|
1562
|
-
"license": "MIT"
|
|
1563
|
-
},
|
|
1564
1463
|
"node_modules/fdir": {
|
|
1565
1464
|
"version": "6.5.0",
|
|
1566
1465
|
"resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
|
|
@@ -1601,15 +1500,6 @@
|
|
|
1601
1500
|
"dev": true,
|
|
1602
1501
|
"license": "ISC"
|
|
1603
1502
|
},
|
|
1604
|
-
"node_modules/highlight.js": {
|
|
1605
|
-
"version": "11.11.1",
|
|
1606
|
-
"resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.11.1.tgz",
|
|
1607
|
-
"integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
|
|
1608
|
-
"license": "BSD-3-Clause",
|
|
1609
|
-
"engines": {
|
|
1610
|
-
"node": ">=12.0.0"
|
|
1611
|
-
}
|
|
1612
|
-
},
|
|
1613
1503
|
"node_modules/is-docker": {
|
|
1614
1504
|
"version": "3.0.0",
|
|
1615
1505
|
"resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz",
|
|
@@ -1929,18 +1819,6 @@
|
|
|
1929
1819
|
"url": "https://opencollective.com/parcel"
|
|
1930
1820
|
}
|
|
1931
1821
|
},
|
|
1932
|
-
"node_modules/lodash": {
|
|
1933
|
-
"version": "4.18.1",
|
|
1934
|
-
"resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
|
|
1935
|
-
"integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
|
|
1936
|
-
"license": "MIT"
|
|
1937
|
-
},
|
|
1938
|
-
"node_modules/lodash-es": {
|
|
1939
|
-
"version": "4.18.1",
|
|
1940
|
-
"resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.18.1.tgz",
|
|
1941
|
-
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
|
1942
|
-
"license": "MIT"
|
|
1943
|
-
},
|
|
1944
1822
|
"node_modules/magic-string": {
|
|
1945
1823
|
"version": "0.30.21",
|
|
1946
1824
|
"resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
|
|
@@ -1950,50 +1828,6 @@
|
|
|
1950
1828
|
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1951
1829
|
}
|
|
1952
1830
|
},
|
|
1953
|
-
"node_modules/marked": {
|
|
1954
|
-
"version": "17.0.6",
|
|
1955
|
-
"resolved": "https://registry.npmmirror.com/marked/-/marked-17.0.6.tgz",
|
|
1956
|
-
"integrity": "sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA==",
|
|
1957
|
-
"license": "MIT",
|
|
1958
|
-
"bin": {
|
|
1959
|
-
"marked": "bin/marked.js"
|
|
1960
|
-
},
|
|
1961
|
-
"engines": {
|
|
1962
|
-
"node": ">= 20"
|
|
1963
|
-
}
|
|
1964
|
-
},
|
|
1965
|
-
"node_modules/naive-ui": {
|
|
1966
|
-
"version": "2.44.1",
|
|
1967
|
-
"resolved": "https://registry.npmmirror.com/naive-ui/-/naive-ui-2.44.1.tgz",
|
|
1968
|
-
"integrity": "sha512-reo8Esw0p58liZwbUutC7meW24Xbn3EwNv91zReWKm2W4JPu+zfgJRn/F7aO0BFmvN+h2brA2M5lRvYqLq4kuA==",
|
|
1969
|
-
"license": "MIT",
|
|
1970
|
-
"dependencies": {
|
|
1971
|
-
"@css-render/plugin-bem": "^0.15.14",
|
|
1972
|
-
"@css-render/vue3-ssr": "^0.15.14",
|
|
1973
|
-
"@types/lodash": "^4.17.20",
|
|
1974
|
-
"@types/lodash-es": "^4.17.12",
|
|
1975
|
-
"async-validator": "^4.2.5",
|
|
1976
|
-
"css-render": "^0.15.14",
|
|
1977
|
-
"csstype": "^3.1.3",
|
|
1978
|
-
"date-fns": "^4.1.0",
|
|
1979
|
-
"date-fns-tz": "^3.2.0",
|
|
1980
|
-
"evtd": "^0.2.4",
|
|
1981
|
-
"highlight.js": "^11.8.0",
|
|
1982
|
-
"lodash": "^4.17.21",
|
|
1983
|
-
"lodash-es": "^4.17.21",
|
|
1984
|
-
"seemly": "^0.3.10",
|
|
1985
|
-
"treemate": "^0.3.11",
|
|
1986
|
-
"vdirs": "^0.1.8",
|
|
1987
|
-
"vooks": "^0.2.12",
|
|
1988
|
-
"vueuc": "^0.4.65"
|
|
1989
|
-
},
|
|
1990
|
-
"engines": {
|
|
1991
|
-
"node": ">=20"
|
|
1992
|
-
},
|
|
1993
|
-
"peerDependencies": {
|
|
1994
|
-
"vue": "^3.0.0"
|
|
1995
|
-
}
|
|
1996
|
-
},
|
|
1997
1831
|
"node_modules/nanoid": {
|
|
1998
1832
|
"version": "3.3.11",
|
|
1999
1833
|
"resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
|
|
@@ -2147,12 +1981,6 @@
|
|
|
2147
1981
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2148
1982
|
}
|
|
2149
1983
|
},
|
|
2150
|
-
"node_modules/seemly": {
|
|
2151
|
-
"version": "0.3.10",
|
|
2152
|
-
"resolved": "https://registry.npmmirror.com/seemly/-/seemly-0.3.10.tgz",
|
|
2153
|
-
"integrity": "sha512-2+SMxtG1PcsL0uyhkumlOU6Qo9TAQ/WyH7tthnPIOQB05/12jz9naq6GZ6iZ6ApVsO3rr2gsnTf3++OV63kE1Q==",
|
|
2154
|
-
"license": "MIT"
|
|
2155
|
-
},
|
|
2156
1984
|
"node_modules/source-map-js": {
|
|
2157
1985
|
"version": "1.2.1",
|
|
2158
1986
|
"resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
@@ -2200,24 +2028,6 @@
|
|
|
2200
2028
|
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
2201
2029
|
}
|
|
2202
2030
|
},
|
|
2203
|
-
"node_modules/treemate": {
|
|
2204
|
-
"version": "0.3.11",
|
|
2205
|
-
"resolved": "https://registry.npmmirror.com/treemate/-/treemate-0.3.11.tgz",
|
|
2206
|
-
"integrity": "sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==",
|
|
2207
|
-
"license": "MIT"
|
|
2208
|
-
},
|
|
2209
|
-
"node_modules/vdirs": {
|
|
2210
|
-
"version": "0.1.8",
|
|
2211
|
-
"resolved": "https://registry.npmmirror.com/vdirs/-/vdirs-0.1.8.tgz",
|
|
2212
|
-
"integrity": "sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==",
|
|
2213
|
-
"license": "MIT",
|
|
2214
|
-
"dependencies": {
|
|
2215
|
-
"evtd": "^0.2.2"
|
|
2216
|
-
},
|
|
2217
|
-
"peerDependencies": {
|
|
2218
|
-
"vue": "^3.0.11"
|
|
2219
|
-
}
|
|
2220
|
-
},
|
|
2221
2031
|
"node_modules/vite": {
|
|
2222
2032
|
"version": "6.4.1",
|
|
2223
2033
|
"resolved": "https://registry.npmmirror.com/vite/-/vite-6.4.1.tgz",
|
|
@@ -2293,18 +2103,6 @@
|
|
|
2293
2103
|
}
|
|
2294
2104
|
}
|
|
2295
2105
|
},
|
|
2296
|
-
"node_modules/vooks": {
|
|
2297
|
-
"version": "0.2.12",
|
|
2298
|
-
"resolved": "https://registry.npmmirror.com/vooks/-/vooks-0.2.12.tgz",
|
|
2299
|
-
"integrity": "sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==",
|
|
2300
|
-
"license": "MIT",
|
|
2301
|
-
"dependencies": {
|
|
2302
|
-
"evtd": "^0.2.2"
|
|
2303
|
-
},
|
|
2304
|
-
"peerDependencies": {
|
|
2305
|
-
"vue": "^3.0.0"
|
|
2306
|
-
}
|
|
2307
|
-
},
|
|
2308
2106
|
"node_modules/vue": {
|
|
2309
2107
|
"version": "3.5.32",
|
|
2310
2108
|
"resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.32.tgz",
|
|
@@ -2326,24 +2124,6 @@
|
|
|
2326
2124
|
}
|
|
2327
2125
|
}
|
|
2328
2126
|
},
|
|
2329
|
-
"node_modules/vueuc": {
|
|
2330
|
-
"version": "0.4.65",
|
|
2331
|
-
"resolved": "https://registry.npmmirror.com/vueuc/-/vueuc-0.4.65.tgz",
|
|
2332
|
-
"integrity": "sha512-lXuMl+8gsBmruudfxnMF9HW4be8rFziylXFu1VHVNbLVhRTXXV4njvpRuJapD/8q+oFEMSfQMH16E/85VoWRyQ==",
|
|
2333
|
-
"license": "MIT",
|
|
2334
|
-
"dependencies": {
|
|
2335
|
-
"@css-render/vue3-ssr": "^0.15.10",
|
|
2336
|
-
"@juggle/resize-observer": "^3.3.1",
|
|
2337
|
-
"css-render": "^0.15.10",
|
|
2338
|
-
"evtd": "^0.2.4",
|
|
2339
|
-
"seemly": "^0.3.6",
|
|
2340
|
-
"vdirs": "^0.1.4",
|
|
2341
|
-
"vooks": "^0.2.4"
|
|
2342
|
-
},
|
|
2343
|
-
"peerDependencies": {
|
|
2344
|
-
"vue": "^3.0.11"
|
|
2345
|
-
}
|
|
2346
|
-
},
|
|
2347
2127
|
"node_modules/ws": {
|
|
2348
2128
|
"version": "8.20.0",
|
|
2349
2129
|
"resolved": "https://registry.npmmirror.com/ws/-/ws-8.20.0.tgz",
|
|
@@ -8,18 +8,15 @@
|
|
|
8
8
|
"preview": "vite preview"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@vicons/ionicons5": "^0.13.0",
|
|
12
|
-
"chokidar": "^4.0",
|
|
13
|
-
"marked": "^17.0.6",
|
|
14
|
-
"naive-ui": "^2.44.1",
|
|
15
|
-
"open": "^10.1",
|
|
16
11
|
"vue": "^3.5",
|
|
17
|
-
"ws": "^8.18"
|
|
12
|
+
"ws": "^8.18",
|
|
13
|
+
"chokidar": "^4.0",
|
|
14
|
+
"open": "^10.1"
|
|
18
15
|
},
|
|
19
16
|
"devDependencies": {
|
|
20
|
-
"@tailwindcss/vite": "^4.0",
|
|
21
17
|
"@vitejs/plugin-vue": "^5.2",
|
|
18
|
+
"vite": "^6.0",
|
|
22
19
|
"tailwindcss": "^4.0",
|
|
23
|
-
"vite": "^
|
|
20
|
+
"@tailwindcss/vite": "^4.0"
|
|
24
21
|
}
|
|
25
22
|
}
|