forked from vbenjs/vite-plugin-style-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "vite-plugin-style-import",
"version": "1.0.1",
"description": "A plug-in that imports component library styles on demand",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Vben",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "pinst --disable && yarn build",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s ",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"install:husky": "is-ci || husky install",
"postinstall": "npm run install:husky",
"postpublish": "pinst --enable"
},
"keywords": [
"vite",
"style",
"import",
"css"
],
"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",
"dependencies": {
"@rollup/pluginutils": "^4.1.0",
"change-case": "^4.1.2",
"debug": "^4.3.2",
"es-module-lexer": "^0.6.0",
"magic-string": "^0.25.7"
},
"peerDependencies": {
"vite": ">=2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"ini": "^2.0.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"pinst": "^2.1.6",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"tsup": "^4.11.2",
"typescript": "^4.3.4",
"vite": "^2.3.8"
}
}