-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 727 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 727 Bytes
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
{
"name": "@example/postcss-config-mts",
"description": "Defining the PostCSS configuration in typescript to be consumed by another package",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist .turbo",
"lint": "prettier --check 'src/**/*.mts'",
"lint-fix": "prettier --write 'src/**/*.mts'",
"watch-esm": "run build:esm --watch"
},
"dependencies": {
"postcss": "^8.4.40",
"postcss-preset-env": "^10.1.1",
"postcss-typesafe-css-modules": "workspace:*"
},
"devDependencies": {
"prettier": "^3.3.3",
"typescript": "~5.6.2"
}
}