-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "rollup-plugin-postcss-modules",
"version": "2.1.1",
"description": "rollup-plugin-postcss wrapper with built-in CSS module and TypeScript support",
"type": "module",
"main": "index.js",
"typings": "index.d.ts",
"repository": "https://github.com/flying-sheep/rollup-plugin-postcss-modules.git",
"author": "Philipp A.",
"license": "GPL-3.0",
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"prepublishOnly": "$npm_execpath run build && $npm_execpath run check && $npm_execpath run test",
"check": "biome check",
"test": "ava"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@rollup/plugin-alias": "^5.0.0",
"@types/node": "^22.0.0",
"@types/reserved-words": "^0.1.0",
"@unional/fixture": "^3.2.11",
"@yarnpkg/sdks": "^3.1.0",
"aurelia-logging": "^1.5.2",
"ava": "^6.0.1",
"esm": "^3.2.25",
"mkdirp": "^3.0.1",
"postcss": "^8.4.19",
"rmfr": "^2.0.0",
"rollup": "^4.1.4",
"style-inject": "^0.3.0",
"typescript": "^5.4.2"
},
"dependencies": {
"camelcase": "^8.0.0",
"postcss-modules": "^6.0.0",
"reserved-words": "^0.1.2",
"rollup-plugin-postcss": "^4.0.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"ava": {
"workerThreads": false
},
"packageManager": "[email protected]"
}