-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "template",
"version": "1.0.0",
"description": "A TypeScript template project.",
"main": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "swc src -d dist"
},
"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/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {}
}
}