-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 878 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 878 Bytes
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
{
"name": "@formspark/formson",
"description": "FormData to JSON converter",
"private": false,
"version": "0.1.1",
"author": "Bjorn Krols (https://formspark.io)",
"license": "MIT",
"keywords": [
"form data",
"form",
"formdata",
"json"
],
"homepage": "https://github.com/formspark/formson#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/formspark/formson.git"
},
"bugs": {
"url": "https://github.com/formspark/formson/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"format": "prettier --write . --ignore-path .gitignore",
"test": "vitest"
},
"devDependencies": {
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}