-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.55 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
{
"name": "postcss-calc",
"version": "11.0.3",
"type": "module",
"description": "PostCSS plugin to reduce calc()",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"calculation",
"calc"
],
"homepage": "https://github.com/postcss/postcss-calc",
"repository": {
"type": "git",
"url": "git+https://github.com/postcss/postcss-calc.git"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"src",
"types",
"LICENSE"
],
"scripts": {
"lint": "oxlint . && tsc && oxfmt --check",
"fmt": "oxfmt",
"benchmark:arithmetic-chains": "node scripts/benchmark-arithmetic-chains.mjs",
"test": "node --test --test-reporter=dot 'test/**/*.test.mjs' test/index.cjs test/convertUnit.cjs",
"test:mutation:corpus": "node test/mutation/corpus-selection.mjs",
"test:corpus:full": "POSTCSS_CALC_FULL_CORPUS=1 node --test test/conformance/corpus.test.mjs"
},
"author": "Andy Jansson",
"license": "MIT",
"engines": {
"node": "^22.22.3 || ^24.15 || >=26.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.25.0"
}
},
"devDependencies": {
"@csstools/css-calc": "^3.3.0",
"@rmenke/css-tokenizer-tests": "^1.2.0",
"@types/node": "^26.4.1",
"fast-check": "^4.9.0",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"postcss": "^8.5.28",
"typescript": "~7.0.2"
},
"dependencies": {
"@csstools/css-tokenizer": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.5.28"
}
}