-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "@asyarb/r-url",
"version": "0.1.3",
"type": "module",
"description": "Small wrapper around the native `URL` class that works with relative URLs.",
"license": "MIT",
"sideEffects": false,
"keywords": ["url", "relative"],
"author": {
"name": "Anthony Yarbrough",
"email": "asyarb@hawaii.edu"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": ["dist"],
"scripts": {
"build": "bunchee",
"dev": "vitest dev",
"lint": "npx @biomejs/biome check .",
"lint:fix": "automd && npx @biomejs/biome check --apply .",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@vitest/coverage-v8": "^1.5.2",
"automd": "^0.3.7",
"bunchee": "^5.1.2",
"changelogen": "^0.5.5",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}