-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "@ozhanefe/ts-codegenerator",
"version": "2.9.1",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"lint": "eslint .",
"test": "jest",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build && bun run lint && bun run test && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tsup": "^8.1.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"ts-morph": "^23.0.0",
"typescript": "^5.0.0"
},
"tsup": {
"external": [
"ts-morph",
"typescript"
]
},
"files": [
"dist"
]
}