generated from ericc-ch/starter-package
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
61
62
63
64
65
{
"name": "opencode-plugins",
"version": "0.0.0",
"description": "_description_",
"keywords": [
"opencode-plugins"
],
"homepage": "https://github.com/ericc-ch/opencode-plugins",
"bugs": "https://github.com/ericc-ch/opencode-plugins/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ericc-ch/opencode-plugins.git"
},
"author": {
"name": "Erick Christian",
"email": "erickchristian48@gmail.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "eslint --cache",
"lint:all": "eslint . --cache",
"lint:fix": "eslint --cache --fix",
"prepare": "simple-git-hooks",
"prerelease": "pnpm run build",
"release": "changeset publish",
"typecheck": "tsc"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": "pnpm run lint:fix"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@echristian/eslint-config": "^0.0.52",
"@types/bun": "^1.2.20",
"bumpp": "^10.2.2",
"eslint": "^9.33.0",
"lint-staged": "^16.1.5",
"simple-git-hooks": "^2.13.1",
"taze": "^19.1.0",
"tsup": "^8.5.0",
"turbo": "^2.5.5",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.14.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
}
}