-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 895 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
34
35
36
{
"name": "discord.rich.presence",
"version": "3.0.3",
"description": "",
"main": "src/index.ts",
"extensionEntry": "dist/index.js",
"moosyncExtension": true,
"displayName": "Discord Rich Presence",
"scripts": {
"watch:build": "webpack --watch",
"webpack:build": "webpack --config webpack.config.js",
"build": "yarn run webpack:build && mopack --path ."
},
"author": "Sahil Gupte",
"devDependencies": {
"@moosync/moosync-types": "https://github.com/Moosync/extension-api-types",
"@moosync/packer": "^0.1.4",
"@types/node": "^17.0.31",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"mopack": {
"exclude": [
"src/**",
"types/**",
"screenshots/**",
"tsconfig.json",
"webpack.config.js"
]
},
"dependencies": {
"form-data": "^4.0.0"
}
}