-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.21 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.21 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
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
{
"name": "@taskade/uri-parser",
"version": "0.1.1",
"description": "A lexer/parser based URI parser for URLs with optional schemes and host detection",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"author": "Engineering at Taskade (https://taskade.com/)",
"contributors": [
{
"name": "Stan Chang",
"email": "stan@taskade.com",
"url": "https://lxcid.com/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/taskade/uri-parser.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"uri",
"url",
"parser",
"lexer",
"compiler",
"whatwg",
"rfc3986"
],
"files": [
"dist/cjs",
"dist/esm",
"dist/types",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "npm run clean && node scripts/build.mjs && npm run build:types",
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run build && npm test",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.0",
"@taskade/eslint-plugin": "^1.0.0",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}