-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.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
{
"name": "parcel-resolver-inlinefunc",
"version": "1.0.0",
"description": "Parcel resolver for compiling and inlining functions as IIFEs, which can be serialized and executed in different contexts",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup src/index.ts --minify --clean --dts",
"build:examples": "pnpm -C examples/content-script-simple build",
"dev": "tsup src/index.ts --watch"
},
"author": "Theodore Brockman <iam@theo.lol>",
"homepage": "https://theo.lol",
"engines": {
"parcel": ">= 2.7.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tbrockman/parcel-resolver-inlinefunc.git"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^20.11.16",
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"dependencies": {
"@parcel/node-resolver-core": "3.2.0",
"@parcel/plugin": "2.9.3",
"@parcel/types": "2.9.3",
"esbuild": "0.19.5"
}
}