-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.18 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
{
"name": "vite-plugin-inject-css-to-js",
"version": "1.1.1",
"description": "Combine this with the Vite build.cssCodeSplit CSS code splitting capability to build css into individual js files instead of using css links.",
"homepage": "https://github.com/Levix/vite-plugin-inject-css-to-js",
"repository": {
"type": "git",
"url": "git+https://github.com/Levix/vite-plugin-inject-css-to-js.git"
},
"bugs": {
"url": "https://github.com/Levix/vite-plugin-inject-css-to-js/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"build": "tsc && vite build",
"release-major": "standard-version -t vite-plugin-inject-css-to-js@ --release-as major && git push --follow-tags origin main && pnpm build && npm publish",
"release-minor": "standard-version -t vite-plugin-inject-css-to-js@ --release-as minor && git push --follow-tags origin main && pnpm build && npm publish",
"release-patch": "standard-version -t vite-plugin-inject-css-to-js@ --release-as patch && git push --follow-tags origin main && pnpm build && npm publish"
},
"keywords": [
"vite",
"vite4",
"vite-plugin",
"vite-plugin-inject-css-to-js"
],
"author": "Levix",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/clean-css": "^4.2.6",
"@types/node": "^20.4.2",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"rollup-plugin-typescript-paths": "^1.4.0",
"standard-version": "^9.5.0",
"tsup": "^8.0.0",
"typescript": "^5.1.6",
"vite": "5.1.5"
},
"lint-staged": {
"**/*.{js,ts,vue,jsx,tsx}": [
"prettier --write"
]
},
"dependencies": {
"clean-css": "^5.3.2"
},
"peerDependencies": {
"vite": ">= 3"
}
}