generated from NezuChan/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
52
{
"name": "template",
"version": "1.0.1",
"description": "Promote NezukoChan by promoting her in your presence !",
"bin": "dist/index.cjs",
"main": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "tsup",
"build:executable": "pkg ."
},
"type": "module",
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@hazmi35/eslint-config": "^8.7.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.24",
"@types/discord-rpc": "^4.0.3",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"pkg": "^5.8.0",
"rimraf": "^3.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {}
},
"dependencies": {
"discord-rpc": "^4.0.1"
},
"pkg": {
"outputPath": "natives"
}
}