-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@astropub/webapi",
"description": "Use Web APIs in Node",
"version": "0.10.14",
"type": "module",
"exports": {
".": {
"import": "./mod.js",
"types": "./mod.d.ts"
},
"./apply": {
"import": "./apply.js"
}
},
"main": "mod.js",
"types": "mod.d.ts",
"files": [
"apply.js",
"mod.d.ts",
"mod.js",
"mod.js.map"
],
"keywords": [
"astro",
"api",
"cancelAnimationFrame",
"clearImmediate",
"clearInterval",
"fetch",
"requestAnimationFrame",
"setImmediate",
"setInterval",
"web"
],
"license": "(CC0-1.0 AND MIT)",
"repository": "astro-community/webapi",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"contributors": [
"Jonathan Neal (https://github.com/jonathantneal)",
"Toru Nagashima (https://github.com/mysticatea)",
"Jimmy Wärting (https://github.com/jimmywarting)",
"David Frank (https://github.com/bitinn)",
"Mattias Buelens (https://github.com/MattiasBuelens)",
"Diwank Singh (https://github.com/creatorrr)"
],
"bugs": "https://github.com/astro-community/webapi/issues",
"homepage": "https://github.com/astro-community/webapi#readme",
"devDependencies": {
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-inject": "4.0.4",
"@rollup/plugin-node-resolve": "13.2.1",
"@rollup/plugin-typescript": "8.3.2",
"@ungap/structured-clone": "0.3.4",
"abort-controller": "3.0.0",
"event-target-shim": "6.0.2",
"fetch-blob": "3.1.5",
"formdata-polyfill": "4.0.10",
"magic-string": "0.26.1",
"node-fetch": "3.2.3",
"rollup": "2.70.2",
"rollup-plugin-terser": "7.0.2",
"urlpattern-polyfill": "4.0.3",
"web-streams-polyfill": "3.2.1"
},
"scripts": {
"build": "node run/build.js",
"release": "node run/build.js && npm publish --access public",
"test": "node run/test.js"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
"files": [
".stackblitzrc",
"*.json"
],
"options": {
"useTabs": false
}
}
]
},
"volta": {
"node": "16.13.1",
"npm": "8.3.0"
}
}