source: frontend/node_modules/tinyglobby/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[9af201e]1{
2 "name": "tinyglobby",
3 "version": "0.2.16",
4 "description": "A fast and minimal alternative to globby and fast-glob",
5 "type": "module",
6 "main": "./dist/index.cjs",
7 "module": "./dist/index.mjs",
8 "types": "./dist/index.d.cts",
9 "exports": {
10 ".": {
11 "import": "./dist/index.mjs",
12 "require": "./dist/index.cjs"
13 },
14 "./package.json": "./package.json"
15 },
16 "sideEffects": false,
17 "files": [
18 "dist"
19 ],
20 "author": "Superchupu",
21 "license": "MIT",
22 "keywords": [
23 "glob",
24 "patterns",
25 "fast",
26 "implementation"
27 ],
28 "repository": {
29 "type": "git",
30 "url": "git+https://github.com/SuperchupuDev/tinyglobby.git"
31 },
32 "bugs": {
33 "url": "https://github.com/SuperchupuDev/tinyglobby/issues"
34 },
35 "homepage": "https://superchupu.dev/tinyglobby",
36 "funding": {
37 "url": "https://github.com/sponsors/SuperchupuDev"
38 },
39 "dependencies": {
40 "fdir": "^6.5.0",
41 "picomatch": "^4.0.4"
42 },
43 "devDependencies": {
44 "@biomejs/biome": "^2.4.10",
45 "@types/node": "^25.5.2",
46 "@types/picomatch": "^4.0.3",
47 "fast-glob": "^3.3.3",
48 "fs-fixture": "^2.13.0",
49 "glob": "^13.0.6",
50 "tinybench": "^6.0.0",
51 "tsdown": "^0.21.7",
52 "typescript": "^6.0.2"
53 },
54 "engines": {
55 "node": ">=12.0.0"
56 },
57 "publishConfig": {
58 "provenance": true
59 },
60 "scripts": {
61 "bench": "node benchmark/bench.ts",
62 "bench:setup": "node benchmark/setup.ts",
63 "build": "tsdown",
64 "check": "biome check",
65 "check:fix": "biome check --write --unsafe",
66 "format": "biome format --write",
67 "lint": "biome lint",
68 "test": "node --test \"test/**/*.ts\"",
69 "test:coverage": "node --test --experimental-test-coverage \"test/**/*.ts\"",
70 "test:only": "node --test --test-only \"test/**/*.ts\"",
71 "typecheck": "tsc --noEmit"
72 }
73}
Note: See TracBrowser for help on using the repository browser.