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.1 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.4.0",
"description": "A plug-in that imports component library styles on demand",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"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": "yarn build",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s ",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"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.1",
"change-case": "^4.1.2",
"debug": "^4.3.2",
"es-module-lexer": "^0.9.3",
"fs-extra": "^10.0.0",
"magic-string": "^0.25.7"
},
"peerDependencies": {
"vite": ">=2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"husky": "^7.0.4",
"ini": "^2.0.0",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"tsup": "^5.10.0",
"typescript": "^4.5.2",
"vite": "^2.6.14"
}
}