generated from antfu/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "unuri",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "Typescript library for managing URIs, ensuring they meet RFC 3986 standards. Features include parsing, validating, and normalizing URIs, with support for custom schemes.",
"author": "Gimyboya",
"license": "MIT",
"funding": "https://github.com/sponsors/whiterocktech",
"homepage": "https://github.com/whiterocktech/unuri#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/whiterocktech/unuri.git"
},
"bugs": "https://github.com/whiterocktech/unuri/issues",
"keywords": [
"URI",
"IRI",
"IDN",
"URN",
"UUID",
"HTTP",
"HTTPS",
"WS",
"WSS",
"MAILTO",
"RFC3986",
"RFC3987",
"RFC5891",
"RFC2616",
"RFC2818",
"RFC2141",
"RFC4122",
"RFC4291",
"RFC5952",
"RFC6068",
"RFC6455",
"RFC6874"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno playground/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"dependencies": {
"punycode.js": "^2.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^1.2.1",
"@antfu/ni": "^0.21.9",
"@antfu/utils": "^0.7.6",
"@types/node": "^20.9.1",
"@types/punycode": "^2.1.2",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"esno": "^4.0.0",
"lint-staged": "^15.1.0",
"pnpm": "^8.10.5",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0-beta.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}