-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 1.87 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
{
"name": "@borderless/ts-scripts",
"version": "0.15.0",
"description": "Simple, mostly opinionated, scripts to build TypeScript modules",
"keywords": [
"scripts",
"typescript",
"package",
"maintain"
],
"homepage": "https://github.com/borderless/ts-scripts",
"bugs": {
"url": "https://github.com/borderless/ts-scripts/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/borderless/ts-scripts.git"
},
"license": "MIT",
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./configs/tsconfig.json": "./configs/tsconfig.json"
},
"types": "dist/index.d.ts",
"bin": {
"ts-scripts": "dist/bin.js"
},
"files": [
"configs/",
"dist/"
],
"scripts": {
"build": "${BIN_EXEC:=tsx} src/bin.ts build",
"check": "${BIN_EXEC:=tsx} src/bin.ts check",
"format": "${BIN_EXEC:=tsx} src/bin.ts format",
"prepare": "${BIN_EXEC:=tsx} src/bin.ts install",
"prepublishOnly": "npm run build",
"specs": "${BIN_EXEC:=tsx} src/bin.ts specs",
"test": "${BIN_EXEC:=tsx} src/bin.ts test"
},
"dependencies": {
"arg": "^5.0.1",
"ci-info": "^3.3.0",
"find-up": "^6.2.0",
"husky": "^8.0.1",
"lint-staged": "^15.0.2",
"pkg-conf": "^4.0.0",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.6",
"rimraf": "^5.0.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/node": "^20.6.0",
"@vitest/coverage-v8": "^0.34.4",
"bun-types": "^1.0.1",
"tsx": "^3.4.2",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"peerDependencies": {
"typescript": "*"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}