-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "core",
"module": "index.ts",
"type": "module",
"private": "true",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky",
"postinstall": "find . -type f -name '*.sh' -exec chmod +x {} +",
"add-bun-pkg": "./scripts/add-bun-pkg.sh",
"add-vite-pkg": "./scripts/add-vite-pkg.sh",
"pkg": "./scripts/run-pkg-script.sh",
"pkg-all": "./scripts/run-all-pkg-script.sh",
"lint": "eslint . --ext .ts"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0"
}
}