-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.54 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
66
67
{
"name": "clickable-path",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@11.18.0",
"description": "Make file paths printed by CLIs ctrl/cmd-clickable, using OSC 8 hyperlinks",
"license": "MIT",
"repository": "danielroe/clickable-path",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"publishConfig": {
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.mts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=22.1.0"
},
"scripts": {
"build": "tsdown",
"dev": "vitest dev",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"prepack": "pnpm lint && pnpm test && pnpm build",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:knip": "knip",
"test:versions": "installed-check -d --no-workspaces",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "9.2.0",
"@types/node": "26.1.2",
"@vitest/coverage-v8": "4.1.10",
"eslint": "10.8.0",
"installed-check": "10.0.1",
"knip": "6.29.0",
"nano-staged": "1.0.2",
"simple-git-hooks": "2.13.1",
"tsdown": "0.22.14",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}