-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "npm-in-browser",
"type": "module",
"description": "npm CLI in browser without 3rd party services or blackbox scripts",
"repository": {
"type": "git",
"url": "https://github.com/naruaway/npm-in-browser.git"
},
"files": [
"./dist"
],
"license": "MIT",
"version": "0.1.3",
"exports": {
".": "./dist/main.js"
},
"scripts": {
"build": "rm -rf dist/ && ./node_modules/.bin/webpack --mode=production && tsx src/scripts/postprocess.ts && ./node_modules/.bin/terser --source-map --mangle -o ./dist/main.js -- ./dist/unmangled-source-do-not-use-this.js && ls -l ./dist/third-party-licenses.json && cp main.d.ts dist/main.d.ts",
"prepare": "./node_modules/.bin/patch-package"
},
"devDependencies": {
"@babel/preset-typescript": "7.23.0",
"babel-loader": "9.1.3",
"browserify-zlib": "0.2.0",
"buffer": "6.0.3",
"constants-browserify": "1.0.0",
"crypto-browserify": "3.12.0",
"https-browserify": "1.0.0",
"memfs": "4.5.0",
"npm": "10.1.0",
"npm-in-browser-shim-assert": "npm:[email protected]",
"npm-in-browser-shim-buffer": "npm:[email protected]",
"npm-in-browser-shim-events": "npm:[email protected]",
"npm-in-browser-shim-url": "npm:[email protected]",
"npm-in-browser-shim-util": "npm:[email protected]",
"os-browserify": "0.3.0",
"patch-package": "8.0.0",
"path-browserify": "1.0.1",
"prettier": "3.0.3",
"querystring-es3": "0.2.1",
"rollup-plugin-polyfill-node": "0.12.0",
"setimmediate": "1.0.5",
"stream-browserify": "3.0.0",
"terser": "5.20.0",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-node-polyfills": "0.14.1",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-license-plugin": "4.3.0"
},
"overrides": {
"pako": "2.1.0"
}
}