forked from jenseng/formdata-submitter-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
48
49
50
51
52
53
54
55
{
"name": "formdata-submitter-polyfill",
"description": "Support the submitter parameter to the FormData constructor in older browsers.",
"keywords": [
"FormData",
"constructor",
"submitter",
"submit",
"polyfill",
"form",
"button",
"entry",
"typescript"
],
"version": "1.0.3",
"author": "Jon Jensen",
"contributors": [
"TechQuery <[email protected]> (https://tech-query.me/)"
],
"homepage": "https://github.com/jenseng/formdata-submitter-polyfill",
"scripts": {
"build": "tsup src/*.ts --global-name FormDataSubmitterPolyfill --dts --sourcemap --minify --format esm,cjs,iife --splitting",
"clean": "rm -rf dist",
"test-server": "npm run build && http-server"
},
"main": "dist/full.js",
"browser": "dist/full.global.js",
"exports": {
".": {
"import": "./dist/full.mjs",
"require": "./dist/full.js"
},
"./lite": {
"import": "./dist/lite.mjs",
"require": "./dist/lite.js"
},
"./impl": {
"types": "./dist/impl.d.ts",
"import": "./dist/impl.mjs",
"require": "./dist/impl.js"
}
},
"files": [
"LICENSE.md",
"dist/**/*"
],
"directories": {},
"devDependencies": {
"@typescript/lib-dom": "npm:@types/web@^0.0.91",
"http-server": "^14.1.1",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
},
"license": "ISC"
}