-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.72 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@kriszu/monorepo",
"version": "0.0.12",
"private": true,
"packageManager": "[email protected]",
"author": "Kriszu <[email protected]>",
"license": "MIT",
"scripts": {
"build": "esno scripts/build.ts",
"build:rollup": "NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c",
"build:types": "tsc --emitDeclarationOnly && npm run types:fix",
"build:redirects": "esno scripts/redirects.ts",
"clean": "rimraf dist types \"packages/*/dist\"",
"docs": "vue-demi-switch 3 && vitepress dev packages --open",
"docs:build": "vitepress build packages && npm run build:redirects ",
"docs:serve": "vitepress serve packages",
"install-fonts": "gfi install Inter && gfi install Fira Code",
"size": "esno scripts/size.ts",
"commit": "czg",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "esno scripts/release.ts",
"meta": "esno scripts/meta.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"types:fix": "esno scripts/fix-types.ts"
},
"devDependencies": {
"@iconify/json": "^2.2.65",
"@kriszu/eslint-config": "^1.0.11",
"@kriszu/hooks": "workspace:*",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/fs-extra": "^11.0.1",
"@types/prettier": "^2.7.2",
"@vitest/coverage-c8": "^0.32.0",
"@vitest/ui": "^0.32.0",
"axios": "^1.4.0",
"consola": "^3.1.0",
"conventional-changelog-cli": "^3.0.0",
"cz-git": "^1.6.1",
"czg": "^1.6.1",
"enquirer": "^2.3.6",
"esbuild-register": "^3.4.2",
"eslint": "^8.40.0",
"esno": "^0.16.3",
"export-size": "^0.5.2",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.1",
"fuse.js": "^6.6.2",
"gray-matter": "^4.0.3",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"markdown-table": "^3.0.3",
"pnpm": "^8.5.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"rollup": "^3.21.8",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-pure": "^0.1.0",
"simple-git": "^3.18.0",
"simple-git-hooks": "^2.8.1",
"typeit": "^8.7.1",
"typescript": "5.1.5",
"unocss": "^0.53.0",
"unplugin-icons": "^0.16.1",
"unplugin-vue-components": "^0.25.0",
"vite": "^4.3.7",
"vite-plugin-inspect": "^0.7.26",
"vite-plugin-pwa": "^0.16.0",
"vitepress": "1.0.0-beta.4",
"vitest": "^0.32.0",
"vue": "^3.3.2",
"vue2": "npm:vue@^2.7.14"
},
"pnpm": {
"overrides": {
"vue-demi": "0.14.0"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}