-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
53
54
{
"name": "",
"version": "0.0.0",
"description": "",
"author": "",
"license": "MIT",
"type": "module",
"main": "dist/index.mjs",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"engines": {
"node": ">= 18"
},
"scripts": {
"start": "run-s check start:no-check",
"start:no-check": "cross-env NODE_ENV=production node --import=tsx --import=./env.ts src/index.ts",
"build": "pkgroll --sourcemap",
"check": "tsc --noEmit",
"dev": "run-s check dev:no-check",
"dev:no-check": "node --import=tsx --import=./env.ts src/index.ts",
"dev:no-check:debug": "node --import=tsx --import=./env.ts --inspect-brk src/index.ts",
"dev:no-check:watch": "tsx watch --ignore !./src/**/* --clear-screen=false --import=./env.ts src/index.ts",
"dev:watch": "run-p \"check -- --watch\" dev:no-check:watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"init": "node scripts/init.js"
},
"dependencies": {
"@dotenvx/dotenvx": "~1.6.4"
},
"devDependencies": {
"@eslint/js": "~8.57.0",
"@types/eslint": "~8.56.11",
"@types/jest": "~29.5.12",
"@types/node": "~20.14.12",
"cross-env": "~7.0.3",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.2.1",
"globals": "~15.8.0",
"npm-run-all2": "~7.0.1",
"pkgroll": "~2.4.2",
"prettier": "~3.3.3",
"ts-jest": "~29.2.3",
"tsx": "~4.16.2",
"typescript": "~5.5.4",
"typescript-eslint": "~7.17.0"
}
}