-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 KB
/
package.json
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
{
"name": "@modular-rocks/traverse-files",
"version": "0.3.7",
"description": "Simply traversing files",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./convenience": {
"types": "./dist/convenience.d.ts",
"default": "./dist/convenience.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"files": ["dist", "!dist/**/*.test.*", "src/**/*.ts", "!src/**/*.test.ts"],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:w": "tsc -p tsconfig.json -w",
"test": "vitest run",
"test:w": "vitest",
"coverage": "vitest --coverage run",
"lint": "biome lint . --config-path=\"../../biome.json\""
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"tsconfig": "workspace:*"
},
"author": "Alex Dollery (DolNpm/DolGit)",
"homepage": "",
"license": "MIT"
}