-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.78 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
68
69
70
71
72
73
74
75
76
{
"name": "npname",
"version": "1.0.17",
"description": "Validate npm package names and check availability on the registry",
"keywords": [
"available",
"check",
"name",
"npm",
"package",
"registry",
"validate"
],
"homepage": "https://github.com/DobroslavRadosavljevic/npname",
"bugs": {
"url": "https://github.com/DobroslavRadosavljevic/npname/issues"
},
"license": "MIT",
"author": "Dobroslav Radosavljevic <dobroslav.radosavljevic@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/DobroslavRadosavljevic/npname"
},
"bin": {
"npname": "dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "bun test",
"lint": "ultracite check",
"format": "ultracite fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"bump": "bumpp --changelog",
"release": "bun publish",
"prepare": "husky"
},
"dependencies": {
"citty": "^0.2.1",
"consola": "^3.4.2",
"speakingurl": "^14.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@types/bun": "^1.3.9",
"@types/speakingurl": "^13.0.6",
"bumpp": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"ultracite": "7.1.5"
},
"lint-staged": {
"*.{ts,js,json,md,yml,yaml}": "ultracite fix"
},
"engines": {
"node": ">=18"
}
}