-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
{
"name": "starter",
"type": "module",
"version": "1.0.0",
"description": "",
"repository": "https://github.com/ts-stack/starter",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"imports": {
"#lib/*": "./dist/*"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"test": "npm run build && npm run esm-jest",
"esm-jest": "node --experimental-vm-modules --no-warnings=ExperimentalWarning node_modules/jest/bin/jest.js",
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf dist*"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.10",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"engines": {
"node": ">= 20.6.0"
}
}