-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "vite-plugin-css-injected-by-js",
"version": "3.5.2",
"description": "A Vite plugin that takes the CSS and adds it to the page through the JS. For those who want a single JS file.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/esm/declarations/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"typings": "dist/esm/declarations/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"coverage": "rimraf coverage && vitest run --coverage",
"ci-test": "vitest run",
"build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./cjs-esm-fixup",
"format": "prettier '{src,test}/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marco-prontera/vite-plugin-css-injected-by-js.git"
},
"keywords": [
"vite",
"vite-plugin",
"plugin",
"typescript",
"css-injected-by-js",
"single-js-file",
"css",
"js"
],
"peerDependencies": {
"vite": ">2.0.0-0"
},
"devDependencies": {
"@types/node": "^18.11.15",
"@vitest/coverage-istanbul": "^0.34.6",
"happy-dom": "^8.1.3",
"prettier": "^2.8.1",
"rimraf": "^5.0.5",
"typescript": "^4.9.4",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"author": "Marco Prontera",
"license": "MIT",
"bugs": {
"url": "https://github.com/marco-prontera/vite-plugin-css-injected-by-js/issues"
},
"homepage": "https://github.com/marco-prontera/vite-plugin-css-injected-by-js#readme"
}