-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
33 lines (33 loc) · 866 Bytes
/
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
{
"name": "sandstone-proxy",
"version": "0.2.0",
"description": "An experimental web proxy utilizing sandboxed iframes and no service worker.",
"bugs": {
"url": "https://github.com/ading2210/sandstone/issues"
},
"homepage": "https://github.com/ading2210/sandstone",
"author": "ading2210",
"license": "AGPL-3.0-only",
"main": "dist/sandstone.mjs",
"scripts": {
"build": "npx webpack",
"build:prod": "npx webpack --mode=production",
"dev": "npx webpack --watch",
"dev:all": "concurrently 'npm run dev' 'cd example; npm run dev'"
},
"dependencies": {
"astray": "^1.1.1",
"libcurl.js": "^0.7.0",
"meriyah": "^6.0.3"
},
"devDependencies": {
"concurrently": "^9.1.2",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"files": [
"src",
"dist"
]
}