-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
{
"name": "pathcat",
"version": "1.4.0",
"description": "pathcat makes URLs easy",
"homepage": "https://github.com/alii/pathcat",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+github.com:alii/pathcat.git"
},
"bugs": {
"url": "https://github.com/alii/pathcat/issues/new"
},
"keywords": [
"url",
"params",
"path",
"builder",
"query",
"stringify"
],
"author": "Alistair Smith <hi@alistair.sh>",
"license": "Unlicense",
"packageManager": "yarn@4.3.1",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build": "yarn test && tsup src/index.ts --dts --format cjs,esm && attw --pack .",
"test": "node --test --import=tsx/esm \"**/*test.ts\"",
"release": "yarn build && yarn npm publish",
"bench": "node --import=tsx benchmark.ts"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@types/benchmark": "^2.1.5",
"@types/node": "^22.7.4",
"benchmark": "^2.1.4",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}