forked from Sage/jsurl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1014 Bytes
/
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
{
"name": "jsurl2",
"version": "2.2.0",
"description": "URL friendly JSON-like formatting and parsing",
"keywords": [
"json",
"url",
"query",
"stringify",
"parse",
"serialize",
"deserialize"
],
"license": "MIT",
"homepage": "http://github.com/wmertens/jsurl2",
"author": "Wout Mertens",
"repository": {
"type": "git",
"url": "git://github.com/wmertens/jsurl2.git"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"packageManager": "[email protected]",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.30",
"blns": "^2.0.4",
"prettier": "^3.2.5",
"terser": "^5.30.0",
"vite": "^5.2.6",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.4.0"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"bench": "vitest bench",
"format": "prettier -w .",
"test": "vitest",
"release": "npx np"
}
}