-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "@wesgro/postcss-migrate-colors-to-vars",
"publishConfig": {
"access": "public"
},
"version": "0.2.3",
"repository": "https://github.com/wesgro/postcss-migrate-colors-to-vars",
"license": "MIT",
"type": "commonjs",
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"files": [
"./dist"
],
"scripts": {
"test": "bun run typecheck && bun run test:unit",
"test:unit": "bun test",
"prepare": "bun run build",
"build": "bun run build:types && bun run bundle:cjs",
"build:types": "tsc src/plugin.ts --emitDeclarationOnly --esModuleInterop --declaration --outdir ./dist",
"typecheck": "tsc src/plugin.ts --noEmit --esModuleInterop --skipLibCheck",
"bundle:cjs": "esbuild src/plugin.ts --bundle --platform=node --outdir=./dist"
},
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.4.6",
"bun": "^0.7.2",
"bun-types": "^0.7.2",
"colord": "^2.9.3",
"esbuild": "^0.18.18",
"postcss": "^8.4.27",
"postcss-colormin": "^6.0.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"postcss": "^8"
}
}