-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "@discordnova/nova-quickstart",
"version": "1.0.0",
"description": "Simple example of a nova deployment",
"main": "dist/index.mjs",
"repository": "https://github.com/discordnova/nova-quickstart",
"author": "MatthieuCoder",
"license": "Apache-2.0",
"dependencies": {
"@discordjs/builders": "^1.4.0",
"@discordnova/nova-cli": "^0.0.5",
"@discordnova/nova-js": "^0.0.5",
"discord-api-types": "^0.37.28",
"ping": "^0.4.2",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/ping": "^0.4.1",
"typescript": "^4.9.4",
"xo": "^0.53.1"
},
"scripts": {
"build": "tsc",
"lint": "xo",
"lint:fix": "xo --fix",
"start": "tsc && node dist/index.mjs",
"register": "tsc && node dist/register.mjs",
"nova": "nova"
},
"xo": {
"rules": {
"import/extensions": "off",
"unicorn/prefer-top-level-await": "off",
"no-constructor-return": "off",
"unicorn/no-array-reduce": "off",
"import/no-unassigned-import": "off",
"n/file-extension-in-import": "off"
},
"prettier": true
}
}