-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "typesync",
"version": "0.14.0",
"type": "module",
"description": "Install missing TypeScript typings for your dependencies.",
"engines": {
"node": "^18.20.0 || ^20.10.0 || >=22.0.0"
},
"files": [
"dist",
"bin"
],
"bin": {
"typesync": "./bin/typesync"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest --ui",
"fix": "eslint --fix && npm run format",
"lint": "eslint && tsc && npm run format:check",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint:watch": "nodemon --exec npm run lint",
"build": "tsdown",
"build:watch": "tsdown --watch",
"run-cli": "npm run build && node bin/typesync",
"run-cli:dry": "npm run run-cli -- --dry",
"do:publish": "npm run lint && npm run test && npm run build && npm publish",
"release:patch": "npm version patch && npm run do:publish && git push --follow-tags",
"release:minor": "npm version minor && npm run do:publish && git push --follow-tags",
"release:prerelease": "npm version prerelease && npm run do:publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffijoe/typesync.git"
},
"author": "Jeff Hansen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffijoe/typesync/issues"
},
"homepage": "https://github.com/jeffijoe/typesync#readme",
"dependencies": {
"awilix": "^12.0.3",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"detect-indent": "^7.0.1",
"js-yaml": "^4.1.0",
"npm-registry-fetch": "^18.0.2",
"ora": "^8.1.1",
"semver": "^7.6.3",
"tinyglobby": "^0.2.10"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/js-yaml": "~4.0.9 || ~4.1.0",
"@types/node": "^22.10.1",
"@types/npm-registry-fetch": "^8.0.7 || ~17.1.0",
"@types/semver": "~7.5.8 || ~7.6.0",
"@vitest/coverage-v8": "^2.1.7",
"@vitest/ui": "^2.1.7",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"oxc-transform": "^0.38.0",
"prettier": "^3.4.1",
"tsdown": "^0.3.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.7"
},
"packageManager": "[email protected]"
}