-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.4 KB
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
{
"name": "create-nosa",
"version": "0.0.56",
"description": "Create a new nosa project",
"keywords": [
"bun",
"create",
"nosa",
"scaffold"
],
"homepage": "https://github.com/shorjs/create-nosa#readme",
"bugs": {
"url": "https://github.com/shorjs/create-nosa/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shorjs/create-nosa.git"
},
"bin": {
"create-nosa": "./index.ts"
},
"files": [
"index.ts",
"src"
],
"type": "module",
"scripts": {
"lint": "oxlint --disable-nested-config",
"lint:fix": "oxlint --fix --disable-nested-config",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"release": "bumpp --git-check --commit --push --tag",
"ts:check": "tsc --noEmit",
"prepare": "bun run simple-git-hooks"
},
"dependencies": {
"@clack/prompts": "1.5.1"
},
"devDependencies": {
"@types/bun": "1.3.14",
"bumpp": "11.1.0",
"nano-staged": "1.0.2",
"oxfmt": "0.53.0",
"oxlint": "1.68.0",
"oxlint-tsgolint": "0.23.0",
"simple-git-hooks": "2.13.1",
"typescript": "6.0.3"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*": "bun run fmt --no-error-on-unmatched-pattern",
"*.{js,jsx,ts,tsx,mjs,cjs}": "bun run lint:fix --no-error-on-unmatched-pattern"
},
"engines": {
"bun": ">=1.3.0"
}
}