generated from casperiv0/ts-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "autoupdater",
"type": "module",
"version": "1.0.0",
"description": "A simple script to automatically run the required steps to update SnailyCADv4.",
"author": {
"name": "Dev-CasperTheGhost",
"url": "https://snailycad.org"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,yml,md}\"",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"build": "ncc build ./src/script.ts -t -o dist/"
},
"dependencies": {
"inquirer": "^9.2.10"
},
"devDependencies": {
"@casperiv/eslint-config": "^8.0.0",
"@types/node": "^20.5.8",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"@types/inquirer": "^9.0.3",
"@vercel/ncc": "^0.36.1",
"typescript": "^5.2.2"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2
}
}