-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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": "amdhelper",
"module": "index.ts",
"type": "commonjs",
"scripts": {
"clean": "rimraf build",
"dev": "bun run index.ts",
"bundle": "bun run clean && webpack",
"compile": "nexe build/bundle.js -o build/amdhelper --remote https://github.com/alvindimas05/nexe/releases/download/v0.0.1",
"build": "bun run clean && bun run bundle && bun run compile"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/bun": "latest",
"@types/node": "^20.14.11",
"@types/yargs": "^17.0.32",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"nexe": "^4.0.0-rc.6",
"rimraf": "^6.0.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"typescript": "^5.5.3"
},
"dependencies": {
"amdfriend": "git+https://github.com/NyaomiDEV/AMDFriend.git",
"chalk": "^5.3.0",
"console-clear": "^1.1.1",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"inquirer": "^10.1.2",
"yargs": "^17.7.2"
}
}