-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.17 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "postcss-adaptive-matrix",
"version": "0.7.0",
"description": "Multi-canvas responsive CSS compiler for PostCSS 8: one design width per design file, bounded fluid sizing, zoom-accessible text, and out-of-the-box component library adaptation.",
"keywords": [
"postcss",
"postcss-plugin",
"responsive",
"adaptive",
"viewport",
"clamp",
"fluid-typography",
"container-query",
"design-tokens",
"component-library",
"mobile",
"desktop",
"px-to-vw",
"accessibility"
],
"license": "MIT",
"author": "Moresyl and contributors",
"homepage": "https://moresyl.github.io/postcss-adaptive-matrix/",
"repository": {
"type": "git",
"url": "git+https://github.com/Moresyl/postcss-adaptive-matrix.git"
},
"bugs": {
"url": "https://github.com/Moresyl/postcss-adaptive-matrix/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./runtime": {
"import": {
"types": "./dist/runtime.d.ts",
"default": "./dist/runtime.js"
},
"require": {
"types": "./dist/runtime.d.cts",
"default": "./dist/runtime.cjs"
}
},
"./package.json": "./package.json"
},
"bin": {
"adaptive-matrix": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"sideEffects": [
"./dist/cli.js"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup && tsx scripts/postbuild.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"conformance:update": "tsx scripts/update-conformance.ts",
"bench": "tsx bench/index.ts",
"bench:check": "tsx bench/index.ts --check",
"docs:check": "node scripts/check-docs.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"check": "npm run build && npm run typecheck && npm run lint && npm run format:check && npm run docs:check && npm run test:coverage && npm run docs:build",
"pack:check": "npm pack --dry-run",
"prepublishOnly": "npm run check"
},
"peerDependencies": {
"postcss": "^8.4.0"
},
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.10",
"caniuse-lite": "^1.0.30001809",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.9.0",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"tsx": "^4.23.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.67.0",
"vitepress": "^1.6.4",
"vitest": "^4.1.10"
}
}