-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "ts-collect",
"type": "module",
"version": "0.1.2",
"description": "Laravel Collections for TypeScript.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/ts-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/ts-starter.git"
},
"bugs": {
"url": "https://github.com/stacksjs/ts-starter/issues"
},
"keywords": ["collections", "laravel", "typescript"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["README.md", "dist"],
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@stacksjs/eslint-config": "^3.8.1-beta.2",
"@types/bun": "^1.1.13",
"bumpp": "^9.8.1",
"bun-plugin-dtsx": "^0.21.8",
"changelogen": "^0.5.7",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint . --fix"
}
}