-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "rollup-plugin-postcss-lit",
"version": "2.2.0",
"description": "Rollup plugin to load PostCSSed stylesheets in LitElement components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r jsdom-global/register test/test.spec.mjs",
"prepublishOnly": "rm -rf dist && npm run build && npm run test",
"lint:check": "eslint '**/*.{ts,mjs}'",
"lint": "npm run lint:check -- --fix",
"format:check": "prettier --ignore-path .gitignore --check '**/*.{ts,mjs}'",
"format": "prettier --ignore-path .gitignore --write '**/*.{ts,mjs}'",
"types:check": "tsc --noEmit",
"check": "npm run test && npm run lint:check && npm run format:check && npm run types:check",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umbopepato/rollup-plugin-postcss-lit.git"
},
"keywords": [
"postcss",
"css",
"lit",
"lit-element",
"lit-html",
"sass",
"scss",
"less",
"stylus",
"css-modules",
"rollup-plugin",
"vite-plugin"
],
"author": "Umberto Pepato <hi@umbo.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/umbopepato/rollup-plugin-postcss-lit/issues"
},
"homepage": "https://github.com/umbopepato/rollup-plugin-postcss-lit#readme",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@rollup/plugin-virtual": "^3.0.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/estree": "^1.0.7",
"@types/mocha": "^10.0.10",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^11.0.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^15.5.1",
"lit": "^3.3.0",
"mocha": "^11.1.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"rollup": "^4.40.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.8.3",
"vite": "^6.2.6"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.4",
"transform-ast": "^2.4.4"
},
"files": [
"dist"
]
}