-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@vnode-util/monorepo",
"type": "module",
"version": "0.0.16",
"private": "true",
"description": "Utilities for manipulating Vue 3 VNodes",
"author": "Elone Hoo <hi@elonehoo.me>",
"license": "MIT",
"keywords": [
"vue",
"vnode",
"vdom",
"util"
],
"scripts": {
"build": "pnpm -C core run build",
"build:dev": "pnpm -C core run dev",
"build:fix": "pnpm -C core run build:fix",
"test": "pnpm -C test run test",
"coverage": "pnpm -C test run coverage",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:serve": "pnpm -C docs run serve",
"release": "bumpp package.json core/package.json --commit --push --tag && pnpm -r publish --access public",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@types/node": "^24.12.2",
"bumpp": "^11.0.1",
"chalk": "^5.6.2",
"eslint": "^10.3.0",
"esno": "^4.8.0",
"fast-glob": "^3.3.3",
"typescript": "^5.9.3",
"vue": "^3.5.33"
}
}