-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 KB
/
package.json
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
{
"name": "@compotes/root",
"type": "module",
"version": "0.9.2",
"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": ">=16"
},
"scripts": {
"build": "pnpm run -r build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm run test:types && pnpm run test:vitest",
"test:vitest": "pnpm run -r test:vitest",
"test:types": "pnpm run -r test:types",
"prepublishOnly": "pnpm build",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"publish": "pnpm run -r publish"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.4",
"eslint": "^8.56.0",
"playwright": "^1.41.2",
"typescript": "^5.3.3",
"vite": "^5.1.2",
"vitepress": "1.0.0-rc.42",
"vitest": "^1.2.2",
"vue": "^3.4.19",
"vue-tsc": "^1.8.27"
}
}