-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "@compotes/root",
"type": "module",
"version": "0.10.1",
"private": "true",
"packageManager": "[email protected]",
"description": "Components library focused on accessibility/customization",
"author": "Applelo",
"license": "MIT",
"homepage": "https://compotes.dev",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Applelo/compotes"
},
"bugs": "https://github.com/Applelo/compotes/issues",
"keywords": [
"components",
"accessible",
"accessibility",
"customize",
"component",
"vanilla",
"typescript",
"typings"
],
"engines": {
"node": ">=20 <25"
},
"scripts": {
"build": "pnpm run -r build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm run test:types && pnpm run test:attw && pnpm run test:vitest",
"test:attw": "pnpm run -r test:attw",
"test:publint": "pnpm run -r test:publint",
"test:vitest": "pnpm run -r test:vitest --run",
"test:coverage": "pnpm run -r test:coverage",
"test:types": "pnpm run -r test:types",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:sync": "node scripts/doc-sync.js",
"prepublish:sync": "node scripts/prepublish-sync.js",
"prepublishOnly": "pnpm prepublish:sync && pnpm build",
"publish:all": "pnpm -r publish"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@arethetypeswrong/cli": "catalog:",
"@vitest/browser-playwright": "catalog:",
"@vitest/coverage-istanbul": "catalog:",
"@vitest/ui": "catalog:",
"eslint": "catalog:",
"playwright": "catalog:",
"publint": "catalog:",
"rolldown": "catalog:",
"rollup": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"unplugin-vue": "catalog:",
"vite": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
}
}