-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.66 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
62
63
64
65
66
67
68
69
70
{
"name": "url-minify",
"version": "2.8.4",
"description": "Library to shorten url without any api keys",
"type": "module",
"packageManager": "[email protected]",
"author": "Rubin Bhandari <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/rubiin/url-minify#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rubiin/url-minify.git"
},
"bugs": "https://github.com/rubiin/url-minify/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint '{src,test}/**/*.ts' --cache --fix",
"prepublishOnly": "nr build",
"release": "bumpp && clean-publish",
"start": "esno src/index.ts",
"format": "prettier --write --cache \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.22.4",
"@types/node": "^22.9.0",
"bumpp": "^9.5.2",
"clean-publish": "^5.0.0",
"eslint": "^8.57.0",
"esno": "^4.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "^5.4.2",
"vitest": "^2.0.5"
},
"dependencies": {
"axios": "^1.7.5"
},
"clean-publish": {
"cleanDocs": true,
"cleanComments": true
}
}