-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·78 lines (78 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@windi-ui/monorepo",
"version": "0.0.1-beta",
"private": false,
"description": "Build Accessible Apps 10x faster",
"scripts": {
"docs:dev": "vitepress dev docs/docs",
"docs:build": "vitepress build docs/docs",
"docs:preview": "vitepress preview docs/docs",
"build": "rimraf packages/*/{dist,es,lib} && nr -r -F \"./packages/windi\" build",
"play": "run-s build play:run",
"play:run": "run-p dev play:dev",
"play:dev": "npm -C playground run dev",
"play:build": "npm -C playground run build",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"clean": "rimraf packages/*/{dist,es,lib}",
"example": "pnpm --filter @windi-ui/example",
"playground": "pnpm --filter @windi-ui/playground",
"test": "vitest",
"test:update": "vitest -u",
"test:coverage": "vitest --coverage",
"windi-ui": "pnpm --filter windi-vue",
"postinstall": "npx simple-git-hooks",
"major": "taze minor -wIr"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@iconify-json/carbon": "^1.1.16",
"@iconify-json/fluent-emoji": "^1.1.13",
"@iconify-json/logos": "^1.1.31",
"@iconify/vue": "^4.1.1",
"@types/node": "^20.4.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"@vue/test-utils": "^2.4.1",
"@vueuse/core": "^10.2.1",
"autoprefixer": "^10.4.14",
"bumpp": "^9.1.1",
"eslint": "8.45.0",
"flexsearch": "^0.7.31",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"postcss-prefix-selector": "^1.16.0",
"rimraf": "^5.0.1",
"sass": "^1.64.1",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.3.3",
"taze": "^0.11.2",
"typescript": "^5.1.6",
"unocss": "^0.53.6",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.3.1",
"vitepress": "1.0.0-beta.6",
"vitest": "^0.33.0",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"pnpm lint:fix"
]
}
}