-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@rvanbaalen/hashparser",
"description": "A lightweight JavaScript library for managing (encoded) URL hash parameters.",
"type": "module",
"version": "3.0.4",
"author": "Robin S. van Baalen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rvanbaalen/hashparser.git"
},
"keywords": [
"javascript",
"hash",
"url",
"parser",
"util"
],
"main": "dist/hashparser.min.js",
"files": [
"dist/hashparser.js",
"dist/hashparser.min.js",
"dist/hashparser.min.js.map"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "vite build",
"test": "vitest tests/hashparser.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rvanbaalen/eslint-config": "^1.0.2",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.15",
"eslint": "^9.21.0",
"jsdom": "^26.0.0",
"vite": "^6.2.2",
"vitest": "^3.0.7"
},
"overrides": {
"vite": {
"esbuild": "^0.25.0"
}
}
}