forked from cloudflare/html-rewriter-wasm
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "htmlrewriter",
"version": "0.0.12",
"description": "Use Cloudflare HTMLRewriter in Node.js, Browser, Next.js and more",
"type": "module",
"files": [
"dist",
"src",
"README.md",
"bun.js",
"vercel.js",
"browser.js",
"cloudflare.js",
"default.js",
"node.mjs"
],
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./bun.js",
"workerd": "./cloudflare.js",
"edge-light": "./vercel.js",
"node": "./node.mjs",
"browser": "./browser.js",
"default": "./default.js"
},
"./dist/html_rewriter_bg.wasm": "./dist/html_rewriter_bg.wasm",
"./dist/html_rewriter_wrapper.js": "./dist/html_rewriter_wrapper.js",
"./dist/html_rewriter.js": "./dist/html_rewriter.js",
"./package.json": "./package.json"
},
"scripts": {
"try": "bun scripts/try.js && node scripts/try.js && deno run --allow-read scripts/try.js && pnpm vite dev scripts",
"prepublishOnly": "pnpm build",
"test": "pnpm vitest",
"build": "tsx scripts/build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remorses/htmlrewriter.git"
},
"keywords": [
"cloudflare",
"workers",
"vercel",
"worker",
"htmlrewriter",
"lol"
],
"author": "Tommaso De Rossi, morse <beats.by.morse@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/remorses/htmlrewriter/issues"
},
"homepage": "https://github.com/remorses/htmlrewriter#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.11.13",
"@xmorse/deployment-utils": "^0.2.19",
"fs-extra": "^11.1.1",
"htmlrewriter": "^0.0.12",
"prettier": "^2.3.2",
"vitest": "^2.1.8"
}
}