-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
43
44
45
46
47
48
49
{
"name": "invokers-polyfill",
"version": "0.0.0-development",
"description": "This polyfills the HTML `command`/`commandfor`, as proposed by the Open UI group.",
"homepage": "https://github.com/keithamus/invokers-polyfill#readme",
"bugs": {
"url": "https://github.com/keithamus/invokers-polyfill/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keithamus/invokers-polyfill.git"
},
"license": "MIT",
"author": "Keith Cirkel (https://keithcirkel.co.uk)",
"type": "module",
"exports": {
".": {
"types": "./invoker.d.ts",
"import": "./index.js",
"browser": "./invoker.min.js",
"require": "./invoker.min.js"
},
"./fn": {
"types": "./index-fn.d.ts",
"import": "./invoker.js"
}
},
"main": "index.js",
"types": "invoker.d.ts",
"typesVersions": {
"*": {
"fn": [
"./index-fn.d.ts"
]
}
},
"files": [
"*.d.ts",
"*.js"
],
"scripts": {
"minify": "esbuild --bundle --minify index.js > invoker.min.js",
"prepublishOnly": "npm run minify",
"test": "echo TODO! Run ./wpt serve --inject-script=../invokers-polyfill/invoker.js for now."
},
"devDependencies": {
"esbuild": "^0.20.0"
}
}