generated from pomle/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 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
37
38
39
40
41
42
{
"name": "@pomle/paths",
"version": "1.5.2",
"description": "TypeScript library for handling type safe and type rich paths and query params",
"author": "Pontus Alexander <pontus.alexander@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pomle/paths"
},
"keywords": [
"path param",
"query string",
"type safety"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "microbundle --jsx React.createElement",
"format": "prettier --write .",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.1",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"microbundle": "^0.14.2",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"files": [
"dist"
]
}