-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "chemicaljs",
"version": "2.5.1",
"description": "Easily create your own web proxy with no experience required.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"files": [
"dist",
"client",
"config",
"ultraviolet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chemicaljs/chemical.git"
},
"author": "Nebelung",
"license": "AGPL-3.0-only",
"scripts": {
"update": "npx npm-check-updates -u && npm i",
"build-uv": "node build-uv.js",
"build": "npm run build-uv && tsup",
"publish": "npm publish --access public"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.1.6",
"@mercuryworkshop/epoxy-transport": "^2.1.26",
"@mercuryworkshop/libcurl-transport": "^1.3.14",
"@mercuryworkshop/scramjet": "https://github.com/chemicaljs/chemical/raw/main/scramjet.tgz",
"@mercuryworkshop/wisp-js": "^0.3.3",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"express": "^4.21.1",
"glob": "^11.0.0",
"nanoid": "^5.0.8",
"rammerhead": "https://github.com/chemicaljs/chemical/raw/main/rammerhead.tgz",
"tsc": "^2.0.4",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"engines": {
"node": ">=20.11.0"
},
"devDependencies": {
"tsup": "^8.3.5"
}
}