-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 911 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 911 Bytes
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
{
"name": "simple-node-typescript-app",
"version": "0.0.0",
"license": "ISC",
"author": "Eric Haynes (https://github.com/ehaynes99)",
"type": "module",
"exports": {
"import": "./dist/index.js",
"types": "./src/index.ts"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rm -rf ./dist",
"format": "npm run lint -- --fix",
"lint": "eslint --cache .",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@swc/core": "^1.12.7",
"@swc/jest": "^0.2.38",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.6",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.30.0",
"eslint-config-erich": "4.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22",
"npm": "USE PNPM!",
"pnpm": ">=10.12.4"
}
}