-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 2.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"bin": {
"ts-node-starter": "dist/cli.js"
},
"bugs": {
"url": "https://github.com/bennycode/ts-node-starter/issues"
},
"description": "",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@evilmartians/lefthook": "^1.9.0",
"@tstv/eslint-config": "^3.2.4",
"@tstv/tsconfig-common": "^3.7.0",
"@types/node": "^22.5.1",
"@vitest/coverage-v8": "^2.0.5",
"cross-env": "^7.0.3",
"dependency-cruiser": "^16.9.0",
"eslint": "^8.57.0",
"generate-changelog": "^1.8.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"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": "npm run check:format -- --list-different && npm run check:lint",
"check:format": "prettier --ignore-path .gitignore --log-level error .",
"check:lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --no-error-on-unmatched-pattern .",
"clean": "rimraf coverage dist docs",
"commit": "npm run fix && git commit -am \"chore: Generated release files\"",
"deploy": "exit 0",
"dev": "tsc --noEmit && node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./src/start.ts",
"dist": "npm run clean && npm run build && attw --pack . --ignore-rules cjs-resolves-to-esm",
"docs": "npm run docs:build",
"docs:build": "typedoc src/index.ts",
"fix": "npm run fix:format && npm run fix:lint",
"fix:format": "npm run check:format -- --write",
"fix:lint": "npm run check:lint -- --fix --quiet",
"postversion": "git push origin && git push origin --tags && npm publish --access public && git reset --hard",
"preversion": "git checkout main && git pull && npm install && npm run test && npm run dist",
"release:major": "generate-changelog -M -x \"chore,test\" && npm run docs && npm run commit && npm version major",
"release:minor": "generate-changelog -m -x \"chore,test\" && npm run docs && npm run commit && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,test\" && npm run docs && npm run commit && npm version patch",
"release:revert": "npm unpublish ts-node-starter",
"start": "tsc --noEmit && node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./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"
}