-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
50
51
52
53
{
"name": "observable-polyfill",
"version": "0.0.0-development",
"description": "A polyfill for the WICG Observable",
"keywords": [
"observable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keithamus/observable-polyfill.git"
},
"license": "MIT",
"author": "Keith Cirkel (https://keithcirkel.co.uk)",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"browser": "./observable.min.js",
"require": "./observable.min.js"
},
"./fn": {
"types": "./observable.d.ts",
"import": "./observable.js"
}
},
"main": "index.js",
"types": "index.d.ts",
"typesVersions": {
"*": {
"fn": [
"./observable.d.ts"
]
}
},
"files": [
"*.d.ts",
"*.js"
],
"scripts": {
"minify": "esbuild --bundle --minify index.js > observable.min.js",
"prepublishOnly": "npm run minify",
"test": "echo TODO! Run ./wpt serve --inject-script=../observables-polyfill/observable.js for now.",
"test-serve": "npx http-server -c1 -t0 --cors --gzip --brotli -o test .",
"test:types": "vitest run"
},
"devDependencies": {
"esbuild": "^0.25.2",
"typescript": "~5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "npm@11.5.2+sha512.aac1241cfc3f41dc38780d64295c6c6b917a41e24288b33519a7b11adfc5a54a5f881c642d7557215b6c70e01e55655ed7ba666300fd0238bc75fb17478afaf3"
}