-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.24 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
{
"name": "@projectwallace/css-layer-tree",
"version": "2.1.3",
"description": "Discover the composition of your CSS @layers in a tree-based format.",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-layer-tree.git"
},
"author": {
"name": "Bart Veneman"
},
"homepage": "https://github.com/projectwallace/css-layer-tree",
"issues": "https://github.com/projectwallace/css-layer-tree/issues",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"scripts": {
"build": "tsdown",
"test": "vitest",
"check": "tsc --noEmit",
"lint": "oxlint"
},
"devDependencies": {
"@codecov/rollup-plugin": "^1.9.1",
"oxlint": "^1.51.0",
"prettier": "^3.3.3",
"publint": "^0.3.18",
"tsdown": "^0.21.0",
"typescript": "6.0.2",
"vitest": "^4.0.0"
},
"files": [
"dist"
],
"keywords": [
"css",
"stylesheet",
"layer",
"layers",
"composition",
"architecture",
"tree"
],
"prettier": {
"semi": false,
"useTabs": true,
"printWidth": 140,
"singleQuote": true
},
"dependencies": {
"@projectwallace/css-parser": "~0.14.0"
}
}