-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "fss-lang",
"type": "module",
"version": "0.0.5",
"description": "File Style Sheets — a CSS-like language for describing how files should be rendered in a tree or panel.",
"author": "Mikhail Isupov <lam0x86@mail.com>",
"license": "MIT",
"homepage": "https://github.com/aesopov/fss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aesopov/fss.git"
},
"bugs": {
"url": "https://github.com/aesopov/fss/issues"
},
"exports": {
".": "./dist/index.mjs",
"./helpers": "./dist/helpers.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/css-tree": "^2.3.11",
"@types/node": "^25.0.3",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"dependencies": {
"css-tree": "^3.1.0"
},
"packageManager": "pnpm@10.30.3"
}