-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
61 lines (61 loc) · 1.42 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@surishortlink/suri",
"version": "1.0.0",
"type": "module",
"description": "Your own short links as an easily deployed static site",
"keywords": [
"self-hosted",
"static site",
"url shortener",
"bitly",
"shorten urls",
"link shortener",
"shortlink",
"shortlinks",
"short links"
],
"homepage": "https://github.com/surishortlink/suri#readme",
"bugs": "https://github.com/surishortlink/suri/issues",
"license": "MIT",
"bin": {
"suri": "bin/suri.js"
},
"main": "./src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/surishortlink/suri.git"
},
"files": [
"bin",
"public",
"src",
"!src/**/*.test.js",
"logo.png"
],
"scripts": {
"docs": "jsdoc src --recurse --destination docs",
"lint": "npm run lint:format && npm run lint:quality",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:quality": "eslint .",
"lint:quality:fix": "eslint --fix .",
"release": "release-it --only-version",
"test": "node --test"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.3",
"globals": "^15.9.0",
"jsdoc": "^4.0.3",
"prettier": "3.3.3",
"release-it": "^17.6.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}