-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 947 Bytes
/
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
{
"name": "badlinks",
"version": "1.1.2",
"description": "A fast way to scan a package for links that might upset the chrome webstore team",
"scripts": {
"build": "bun run build.ts",
"start": "bun run dist/index.js",
"dev": "bun run ./index.ts",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"arg": "^5.0.2",
"tiny-invariant": "^1.3.3",
"typescript": "^5.7.2",
"@types/bun": "latest"
},
"type": "module",
"homepage": "https://github.com/spookyuser/badlinks",
"url": "https://github.com/spookyuser/badlinks/issues",
"keywords": [
"firebase",
"cli",
"scan",
"chrome extension",
"crx"
],
"author": "spookyuser",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"bin": {
"badlinks": "./dist/index.js"
}
}