generated from bennycode/ts-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"bin": {
"ts2esm": "dist/src/cli.js"
},
"bugs": {
"url": "https://github.com/bennycode/ts2esm/issues"
},
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"@types/jju": "^1.4.5",
"@types/json-diff": "^1.0.3",
"jju": "^1.4.0",
"json-diff": "^1.0.6",
"jsonpatch": "^3.1.0",
"ts-morph": "^24.0.0",
"typescript": "5.7.2"
},
"description": "Transforms TypeScript imports and exports into ESM-compatible declarations.",
"devDependencies": {
"@evilmartians/lefthook": "^1.8.2",
"@tstv/eslint-config": "^3.2.2",
"@tstv/tsconfig-common": "^3.6.0",
"@types/node": "^20.17.6",
"@vitest/coverage-v8": "^2.1.5",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"generate-changelog": "^1.8.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"vitest": "^2.1.3"
},
"engines": {
"node": ">= 10.9"
},
"files": [
"dist/src",
"!dist/**/*.test.*"
],
"homepage": "https://www.npmjs.com/package/ts2esm",
"keywords": [
"codemod",
"ecmascript",
"esm",
"tsc",
"typescript"
],
"license": "MIT",
"main": "dist/src/converter/convertProject.ts",
"name": "ts2esm",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/bennycode/ts2esm.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 .nyc_output coverage dist",
"deploy": "exit 0",
"dev": "npm run test:types && node --no-warnings=ExperimentalWarning --inspect --loader ts-node/esm ./src/cli.ts",
"dev:corner": "npm run dev -- ../../temp/cornerstone3D/tsconfig.json --debug",
"dev:etl": "npm run dev -- ../../southpolecarbon/emission-factors-etl/tsconfig.json --debug",
"dist": "npm run clean && npm run build",
"docs": "exit 0",
"fix": "npm run fix:format && npm run fix:lint",
"fix:format": "npm run check:format -- --write",
"fix:lint": "npm run check:lint -- --fix --quiet",
"log": "git add . && git commit -am \"chore: created clean Git working directory\"",
"postversion": "git push origin && git push origin --tags && npm publish --access public",
"preversion": "git checkout main && git pull && npm install && npm run test && npm run dist",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch",
"start": "npm run test:types && node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/cli.ts",
"test": "npm run test:types && npm run test:unit",
"test:types": "tsc --noEmit",
"test:unit": "vitest run --passWithNoTests",
"test:unit:coverage": "npm run test:unit -- --coverage.enabled"
},
"type": "module",
"version": "2.2.7"
}