forked from vbenjs/vite-plugin-style-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "vite-plugin-style-import-monorepo",
"version": "2.0.0",
"private": true,
"license": "MIT",
"author": "Vben",
"scripts": {
"stub": "pnpm run prepack --filter ./packages -- --stub",
"postinstall": "pnpm run stub",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint:pretty": "pretty-quick --staged",
"lint:eslint": "eslint \"packages/**/*.{ts,tsx}\" --fix",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/anncwb/vite-plugin-style-import"
},
"bugs": {
"url": "https://github.com/anncwb/vite-plugin-style-import/issues"
},
"homepage": "https://github.com/anncwb/vite-plugin-style-import/tree/master/#readme",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/html-minifier-terser": "^6.1.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tsup": "^5.11.11",
"typescript": "^4.5.5",
"unbuild": "^0.6.9",
"vite": "^2.7.13",
"vitest": "^0.2.5"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --ext .ts"
],
"packages/**/*.d.ts": [
"eslint --ext .ts"
]
}
}