-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.13 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"bin": {
"ts-node-starter": "dist/cli.js"
},
"bugs": {
"url": "https://github.com/bennycode/ts-node-starter/issues"
},
"description": "",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.3.8",
"@tstv/tsconfig-common": "^3.7.1",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.15",
"dependency-cruiser": "^17.3.2",
"generate-changelog": "^1.8.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"files": [
"dist",
"!dist/**/*.test.*"
],
"homepage": "https://www.npmjs.com/package/ts-node-starter",
"keywords": [],
"license": "UNLICENSED",
"main": "dist/index.js",
"name": "ts-node-starter",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/bennycode/ts-node-starter.git"
},
"scripts": {
"build": "tsc",
"check": "biome lint .",
"clean": "rm -rf coverage dist",
"commit": "npm run fix && git commit -am \"chore: Generated release files\"",
"deploy": "exit 0",
"dev": "tsx ./src/start.ts",
"dist": "npm run clean && npm run build && attw --pack . --ignore-rules cjs-resolves-to-esm",
"fix": "biome format . --write",
"postversion": "git push origin && git push origin --tags && npm publish --access public && git restore .",
"preversion": "git checkout main && git pull && npm install && npm run test && npm run dist",
"release:major": "generate-changelog -M -x \"chore,test\" && npm run commit && npm version major",
"release:minor": "generate-changelog -m -x \"chore,test\" && npm run commit && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,test\" && npm run commit && npm version patch",
"release:revert": "npm unpublish ts-node-starter",
"start": "tsx ./src/start.ts",
"test": "npm run test:types && npm run test:imports && npm run test:unit:coverage",
"test:imports": "depcruise src",
"test:types": "tsc --project tsconfig.check.json",
"test:unit": "vitest run --passWithNoTests",
"test:unit:coverage": "npm run test:unit -- --coverage"
},
"type": "module",
"version": "0.0.0"
}