-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "moosync.yt.download",
"version": "1.0.0",
"description": "Downloads audio from Youtube. Just a proof of concept",
"main": "src/index.ts",
"icon": "assets/icon.svg",
"extensionEntry": "dist/index.js",
"moosyncExtension": true,
"displayName": "Youtube Downloader (POC)",
"scripts": {
"watch:build": "npm run setup && webpack --watch",
"webpack:build": "npm run setup && npm run pex && webpack --config webpack.config.js && npm run clean",
"build": "npm run webpack:build && mopack --path .",
"setup": "ts-node -P ./tsconfig.setup.json scripts/setup.ts",
"pex": "ts-node -P ./tsconfig.setup.json scripts/pack.ts",
"clean": "ts-node -P ./tsconfig.setup.json scripts/clean.ts"
},
"author": "Sahil Gupte",
"devDependencies": {
"@moosync/moosync-types": "https://github.com/Moosync/extension-api-types",
"@moosync/packer": "^0.1.4",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/buffer-split": "^1.0.1",
"@types/node-ipc": "^9.2.2",
"@types/tar": "^6.1.7",
"@types/uuid": "^9.0.6",
"buffer-split": "^1.0.0",
"command-exists": "^1.2.9",
"copy-webpack-plugin": "^11.0.0",
"node-ipc": "npm:@achrinza/[email protected]",
"tar": "^6.2.0",
"uuid": "^9.0.1"
},
"mopack": {
"exclude": [
"src/**",
"python-bin.pex",
"python-src/**",
"scripts/**",
"tsconfig.setup.json",
"tsconfig.json",
"dist/pipes/**"
]
}
}