-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "the-lovely-language",
"version": "0.0.1-alpha.0",
"description": "An experimental homegrown coding language.",
"repository": {
"type": "git",
"url": "git+https://github.com/crutchcorn/the-lovely-language.git"
},
"bugs": {
"url": "https://github.com/crutchcorn/the-lovely-language/issues"
},
"homepage": "https://crutchcorn.github.io/the-lovely-language/",
"main": "index.js",
"scripts": {
"build": "tsc --noEmit",
"dev": "tsx ./src/index.ts",
"debug": "node --inspect-brk --loader tsx ./src/index.ts",
"watch": "tsx watch ./src/index.ts",
"test": "vitest",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"prepare": "husky install"
},
"devDependencies": {
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"lint-staged": "^13.2.3"
},
"lint-staged": {
"*{.js,.jsx,.ts,.tsx}": "eslint --fix"
},
"engines": {
"node": ">=18.0.0",
"npm": ">= 99999.0.0",
"pnpm": ">= 8.0.0"
}
}