generated from diba1013/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.64 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
{
"name": "@diba1013/tscz",
"version": "0.2.1",
"description": "A small wrapper for esbuild rolllup libraries",
"keywords": [
"typescript",
"esbuild",
"rollup",
"bundler"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/diba1013/tscz.git"
},
"author": "diba1013",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"type": "module",
"files": [
"dist"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"bin": "./dist/cli.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "pnpm exec tsx src/cli.build.ts && dist/cli.cjs && dist/cli.cjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"peerDependencies": {
"typescript": "5.x"
},
"dependencies": {
"cac": "^6.7.14",
"chokidar": "^3.6.0",
"esbuild": "^0.21.5",
"esbuild-plugin-alias": "^0.2.1",
"picocolors": "^1.0.1",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"tinypool": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@diba1013/eslint-config": "^0.11.1",
"@diba1013/prettier-config": "^0.11.1",
"@diba1013/tscz": "link:.",
"@rollup/rollup-linux-x64-gnu": "^4.18.0",
"@types/node": "^20.14.2",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.15.4",
"typescript": "^5.4",
"vite": "^5.3.0",
"vitest": "^1.6.0"
}
}