-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "@bogeychan/elysia-polyfills",
"version": "0.6.4",
"description": "Collection of experimental Elysia.js polyfills",
"author": {
"name": "bogeychan",
"url": "https://github.com/bogeychan",
"email": "bogeychan@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/bogeychan/elysia-polyfills"
},
"type": "module",
"bin": {
"elysia-polyfills": "./bin/cli.js"
},
"scripts": {
"build": "rm -fr dist && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && bash fixup",
"release": "npm run build && npm publish --access public"
},
"types": "./dist/modules.d.ts",
"exports": {
"./node/index.js": {
"require": "./dist/cjs/env/node/index.js",
"import": "./dist/mjs/env/node/index.js"
},
"./deno/index.js": {
"require": "./dist/cjs/env/deno/index.js",
"import": "./dist/mjs/env/deno/index.js"
}
},
"peerDependencies": {
"elysia": ">= 0.6.19"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/node": "18",
"bun-types": "^1.0.1",
"elysia": "^0.6.19",
"typescript": "^5.2.2"
},
"dependencies": {
"acorn": "^8.8.2",
"acorn-walk": "^8.2.0",
"astring": "^1.8.4",
"glob": "^10.2.1",
"ts-morph": "^18.0.0"
},
"homepage": "https://github.com/bogeychan/elysia-polyfills",
"bugs": "https://github.com/bogeychan/elysia-polyfills/issues",
"license": "MIT",
"keywords": [
"elysia",
"polyfills",
"deno",
"node"
]
}