forked from MercuryWorkshop/scramjet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.71 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.71 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@mercuryworkshop/scramjet",
"version": "2.0.0-alpha",
"description": "An experimental web proxy that aims to be the successor to Ultraviolet",
"type": "module",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MercuryWorkshop/scramjet"
},
"scripts": {
"build": "rspack build --mode production",
"build:types": "rslib build && rm -rf dist/temp",
"build:all": "npm run build && npm run build:types",
"rewriter:build": "cd rewriter/wasm/ && bash build.sh && cd ../../",
"dev": "node server.js",
"dev:debug": "DEBUG=1 node server.js",
"prepack": "RELEASE=1 npm run rewriter:build && npm run build:all",
"pub": "npm publish --no-git-checks --access public",
"format": "prettier --write .",
"format:docs": "remark \"docs/**/*.{md,mdx}\" --output",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"lint:workflows": "actionlint .github/workflows/*.yml",
"lint:all": "npm run lint && npm run lint:workflows",
"test": "npm run test:package && npm run test:integration",
"test:package": "ava tests/ci/packageValidation.js",
"test:integration": "npx playwright test",
"preinstall": "npx only-allow pnpm",
"docs": "typedoc",
"docs:dev": "typedoc --options typedoc.dev-facing.json",
"docs:serve": "npx serve _docs; typedoc --watch"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./lib/noop.js"
},
"./path": {
"types": "./lib/index.d.ts",
"default": "./lib/index.cjs"
},
"./bundled": {
"types": "./dist/types/index.d.ts",
"default": "./dist/scramjet.bundle.js"
}
},
"files": [
"dist",
"lib"
],
"keywords": [],
"author": "",
"license": "MIT",
"ava": {
"files": [
"tests/ci/**/*.js"
],
"verbose": true
},
"devDependencies": {
"@8hobbies/typedoc-plugin-404": "^3.2.1",
"@8hobbies/typedoc-plugin-plausible": "^2.2.0",
"@catppuccin/vscode": "^3.18.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@estruyf/github-actions-reporter": "^1.10.0",
"@fastify/static": "^8.2.0",
"@giancosta86/typedoc-readonly": "^1.0.1",
"@mercuryworkshop/bare-as-module3": "^2.2.5",
"@mercuryworkshop/epoxy-transport": "^2.1.28",
"@mercuryworkshop/libcurl-transport": "^1.5.0",
"@mercuryworkshop/wisp-js": "^0.3.3",
"@nebula-services/bare-server-node": "^2.0.4",
"@playwright/test": "^1.55.0",
"@reside-ic/typedoc-plugin-copy-doc": "^1.1.2",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rslib/core": "^0.13.2",
"@rspack/cli": "^1.5.3",
"@rspack/core": "^1.5.3",
"@shipgirl/typedoc-plugin-versions": "^0.3.2",
"@stephansama/catppuccin-typedoc": "^1.0.1",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.8",
"@types/node": "^24.3.1",
"@types/serviceworker": "^0.0.152",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"actionlint": "^2.0.6",
"ava": "^6.4.1",
"dotenv": "^17.2.2",
"eslint": "^9.35.0",
"fastify": "^5.6.0",
"glob": "^11.0.3",
"playwright": "^1.55.0",
"prettier": "^3.6.2",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.1.1",
"remark-stringify": "^11.0.0",
"ts-checker-rspack-plugin": "^1.1.5",
"tsc-alias": "^1.8.16",
"tslib": "^2.8.1",
"typedoc": "^0.28.12",
"typedoc-material-theme": "^1.4.0",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-include-example": "^2.1.2",
"typedoc-plugin-markdown": "^4.8.1",
"typedoc-plugin-mdn-links": "^5.0.9",
"typescript": "^5.9.2"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.1.7",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.2.2",
"htmlparser2": "10.0.0",
"idb": "^8.0.3",
"parse-domain": "^8.2.2",
"set-cookie-parser": "^2.7.1"
}
}