forked from astro-community/webapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.05 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
{
"name": "@astropub/webapi",
"description": "Use Web APIs in Node",
"version": "0.7.2",
"type": "module",
"exports": {
".": {
"import": "./mod.js",
"types": "./mod.d.ts"
}
},
"main": "mod.js",
"types": "mod.d.ts",
"files": [
"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 <[email protected]>",
"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.8",
"@rollup/plugin-inject": "^4.0.3",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.0",
"abort-controller": "^3.0.0",
"event-target-shim": "^6.0.2",
"fetch-blob": "^3.1.3",
"formdata-polyfill": "^4.0.10",
"magic-string": "^0.25.7",
"node-fetch": "^3.1.0",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"web-streams-polyfill": "^3.2.0"
},
"scripts": {
"build": "node run/build.js",
"release": "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"
}
}