-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "object-form-encoder",
"version": "0.0.6",
"description": "Utility to normalize and convert objects into FormData",
"author": "Artem Manchenkov <artem@manchenkoff.me>",
"license": "MIT",
"keywords": [
"formdata",
"object",
"serialize",
"json",
"form"
],
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest watch",
"fmt": "prettier --write .",
"lint": "eslint --fix .",
"release": "yarn lint && yarn test && yarn build && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manchenkoff/object-form-encoder.git"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.0",
"vitest": "^0.34.6"
},
"packageManager": "yarn@3.6.4"
}