-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.25 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "postcss-better-units",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.5.2",
"description": "A PostCSS plugin to define, transform, and manage custom or existing CSS units with ease.",
"author": "zumm <jan.plys@gmail.com> (https://github.com/zumm)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zumm/postcss-better-units.git"
},
"bugs": {
"url": "https://github.com/zumm/postcss-better-units/issues"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"units",
"custom units"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"commitlint": "commitlint --edit",
"typecheck": "tsc --noEmit",
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest run --bail 1",
"release": "dotenvx run -- semantic-release"
},
"peerDependencies": {
"postcss": "^8.5.3"
},
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@anolilab/semantic-release-pnpm": "^5.0.0",
"@antfu/eslint-config": "^7.4.3",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/types": "^19.5.0",
"@dotenvx/dotenvx": "^1.38.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"semantic-release": "^25.0.3",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"esbuild@<0.25.0": "^0.25.0"
}
}
}