-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "@nuintun/uri",
"version": "0.3.0",
"description": "A simple WHATWG URI parser.",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.cjs",
"default": "./esm/index.js"
}
},
"files": [
"cjs",
"esm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nuintun/URI.git"
},
"keywords": [
"URI",
"URL"
],
"author": {
"name": "nuintun",
"email": "nuintun@qq.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nuintun/URI/issues"
},
"homepage": "https://github.com/nuintun/URI#readme",
"scripts": {
"lint": "tsc --noEmit",
"pretest": "pnpm build",
"clean": "node tools/clean.ts",
"prepublishOnly": "pnpm build",
"test": "node --test tests/index.ts",
"build:cjs": "rollup -c tools/rollup.cjs.ts",
"build:esm": "rollup -c tools/rollup.esm.ts",
"build:fix-types": "node tools/fix-types.ts",
"build": "pnpm clean && pnpm build:main && pnpm format",
"format": "prettier --write . --ignore-path .prettierignore",
"build:main": "pnpm build:cjs && pnpm build:esm && pnpm build:fix-types"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"dts-paths": "^2.2.1",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"typescript": "^6.0.2"
}
}