-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "@stevent-team/epoxy",
"version": "2.2.0",
"description": "Lightweight server-side per-route html injection",
"keywords": [
"epoxy",
"injection",
"react",
"ssr"
],
"repository": "https://github.com/stevent-team/epoxy",
"author": "Stevent",
"license": "MIT",
"bin": {
"epoxy": "./dist/index.js"
},
"main": "./dist/index.js",
"source": "./index.ts",
"types": "./dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=10"
},
"exports": {
".": "./dist/index.js",
"./helpers": "./helpers/dist/index.js"
},
"scripts": {
"build": "tsc -d --emitDeclarationOnly --declarationMap --skipLibCheck --resolveJsonModule --outDir dist && esbuild index.ts --platform=node --target=node16 --format=esm --bundle --sourcemap --external:commander --external:cors --external:esbuild --external:express --external:keyv --external:require-from-string --outfile=dist/index.js",
"build:ci": "yarn build && yarn --cwd helpers build",
"ci:release": "yarn build:ci && yarn changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@types/express": "^4.17.14",
"@types/node": "^18.8.5",
"typescript": "^4.8.4"
},
"dependencies": {
"commander": "^9.4.1",
"cors": "^2.8.5",
"esbuild": "^0.15.10",
"express": "^4.18.1",
"keyv": "^4.3.2",
"require-from-string": "^2.0.2"
}
}