-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) Β· 2.88 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) Β· 2.88 KB
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
{
"name": "@velin-dev/root",
"type": "module",
"version": "1.0.0-beta.5",
"private": true,
"packageManager": "pnpm@10.34.5",
"description": "Develop prompts with Vue SFC or Markdown like pro.",
"author": {
"name": "RainbowBird",
"email": "rbxin2003@outlook.com",
"url": "https://github.com/luoling8192"
},
"contributors": [
{
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
"url": "https://github.com/nekomeowww"
}
],
"license": "MIT",
"homepage": "https://github.com/moeru-ai/velin",
"repository": {
"type": "git",
"url": "git+https://github.com/moeru-ai/velin.git"
},
"bugs": "https://github.com/moeru-ai/velin/issues",
"scripts": {
"dev": "pnpm -rF=\"./packages/*\" run build && pnpm -rF=\"./apps/*\" run dev",
"dev:play": "pnpm -F @velin-dev/apps-playground run dev",
"dev:browser-dev": "nr -F @velin-dev/example-vite-browser dev",
"build": "pnpm -rF=\"./packages/*\" -F=\"./examples/*\" -F=\"./apps/*\" run build",
"build:play": "pnpm -F @velin-dev/apps-playground run build",
"build:packages": "pnpm -rF=\"./packages/*\" run build",
"run:node-sfc": "pnpm -F @velin-dev/example-native-node run:sfc",
"run:node-md": "pnpm -F @velin-dev/example-native-node run:md",
"docs:toc": "doctoc --github --title \"## Table of Contents\" --maxlevel=2 README.md",
"docs:update": "pnpm docs:toc",
"test": "vitest --coverage",
"test:run": "vitest run",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"attw:packages": "pnpm -rF=\"./packages/*\" run --parallel attw",
"typecheck": "pnpm -rF=\"./packages/*\" -F=\"./apps/*\" -F run --parallel typecheck",
"up": "taze -w -r -I -f && pnpm prune && pnpm dedupe",
"changelogithub": "changelogithub",
"sizecheck": "npx vite-bundle-visualizer",
"nolyfill": "pnpm dlx nolyfill"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@arethetypeswrong/cli": "catalog:",
"@arethetypeswrong/core": "catalog:",
"@catppuccin/palette": "catalog:",
"@iconify/utils": "catalog:",
"@pnpm/find-workspace-dir": "catalog:",
"@types/markdown-it": "catalog:",
"@types/node": "catalog:",
"@unocss/eslint-config": "catalog:",
"@unocss/eslint-plugin": "catalog:",
"@unocss/preset-mini": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"@vitest/browser-playwright": "catalog:",
"@vitest/coverage-v8": "catalog:",
"bumpp": "catalog:",
"changelogithub": "catalog:",
"doctoc": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"playwright": "catalog:",
"taze": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"unocss": "catalog:",
"unocss-preset-scrollbar": "catalog:",
"unplugin-unused": "catalog:",
"vite": "catalog:",
"vite-plugin-inspect": "catalog:",
"vitest": "catalog:"
}
}