forked from runjuu/html-inline-css-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.38 KB
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
{
"name": "html-inline-css-rspack-plugin",
"version": "1.11.5",
"description": "☄️ A rspack plugin for convert external stylesheet to embedded stylesheet, aka document stylesheet",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig.json",
"postpublish": "npm run build",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbbfcd/html-inline-css-rspack-plugin.git"
},
"keywords": [
"rspack",
"inline",
"internal",
"embedded",
"document",
"css",
"style",
"stylesheet"
],
"author": "cbbfcd",
"license": "MIT",
"bugs": {
"url": "https://github.com/cbbfcd/html-inline-css-rspack-plugin/issues"
},
"homepage": "https://github.com/cbbfcd/html-inline-css-rspack-plugin#readme",
"devDependencies": {
"@types/node": "^22.5.4",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"@rspack/core": "^1.1.2",
"ava": "^6.1.3",
"jsdom": "^25.0.0",
"css-loader": "^7.1.2"
},
"peerDependencies": {
"@rspack/core": "1.x"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=20.10.0"
},
"dependencies": {
"@rspack/lite-tapable": "^1.0.1"
},
"ava": {
"files": [
"test/**/*.spec.js"
]
}
}