-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "arenaless-bundler",
"version": "1.1.4",
"description": "Bundler based on rollup for ArenaLess",
"module": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"test": "ts-node test.ts",
"build": "node esbuild.mjs",
"build_node": "esbuild index.ts --bundle --outfile=dist/index_node.js --platform=node --format=cjs --minify",
"prepublish": "npm run build",
"buildrun": "npm run build&&esbuild test-coffee.ts --bundle --platform=browser --format=esm --outfile=tmp.js && node tmp.js"
},
"author": "tobylai",
"license": "MIT",
"devDependencies": {
"@rollup/browser": "^4.21.0",
"@types/coffeescript": "^2.5.7",
"@types/estree": "^1.0.0",
"@types/node": "^22.5.0",
"@types/path-browserify": "^1.0.3",
"@types/picomatch": "^3.0.1",
"arenaless-bundler": "^1.1.0",
"esbuild-plugin-polyfill-node": "^0.3.0",
"estree-walker": "^2.0.2",
"js-base64": "^3.7.7",
"json5": "^2.2.3",
"path-browserify": "^1.0.1",
"picomatch": "^2.3.1",
"smob": "^1.5.0",
"terser": "^5.31.6",
"typescript": "^5.5.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"coffeescript": "^2.7.0"
}
}