-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
{
"name": "postcss-typesafe-css-modules",
"version": "2.0.1",
"description": "PostCSS plugin for generating typesafe CSS modules",
"packageManager": "yarn@4.3.1",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"modules",
"css modules",
"components",
"typescript",
"typesafe"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"scripts": {
"build": "echo 'Done'",
"build:cjs": "rm -rf dist/cjs && mkdir -p dist/cjs && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json && tsc -p tsconfig.cjs.json --outDir dist/cjs",
"build:esm": "rm -rf dist/esm && mkdir -p dist/esm && echo '{ \"type\": \"module\" }' > dist/esm/package.json && tsc -p tsconfig.esm.json --outDir dist/esm",
"clean": "rm -rf dist .turbo",
"lint": "prettier --check 'src/**/*.ts'",
"lint-fix": "prettier --write 'src/**/*.ts'",
"watch-cjs": "run build:cjs --watch",
"watch-esm": "run build:esm --watch"
},
"dependencies": {
"fs-extra": "^11.2.0",
"lines-and-columns": "^2.0.4",
"postcss-modules": "^6.0.0",
"source-map": "^0.7.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"typescript": "~5.6.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/styu/postcss-typesafe-css-modules.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md",
"package.json"
]
}