-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.36 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
{
"name": "@projectwallace/css-layer-tree",
"version": "2.1.5",
"description": "Discover the composition of your CSS @layers in a tree-based format.",
"keywords": [
"architecture",
"cascade",
"composition",
"css",
"layer",
"layers",
"stylesheet",
"tree"
],
"homepage": "https://github.com/projectwallace/css-layer-tree",
"license": "MIT",
"author": {
"name": "Bart Veneman"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-layer-tree.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown",
"test": "vitest",
"check": "tsc --noEmit",
"lint": "oxlint && oxfmt --check",
"knip": "knip"
},
"dependencies": {
"@projectwallace/css-parser": "~0.18.2"
},
"devDependencies": {
"@projectwallace/preset-oxlint": "^0.0.11",
"knip": "^6.31.0",
"oxfmt": "^0.61.0",
"oxlint": "^1.74.0",
"publint": "^0.3.21",
"tsdown": "^0.22.9",
"typescript": "7.0.2",
"vite": "^8.2.0",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.0.0",
"issues": "https://github.com/projectwallace/css-layer-tree/issues"
}