-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.55 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.55 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
{
"name": "@craftile/editor",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky",
"format": "prettier --write \"packages/**/*.{js,ts,tsx,vue,json,md}\" \"plugins/**/*.{js,ts,tsx,vue,json,md}\"",
"format:check": "prettier --check \"packages/**/*.{js,ts,tsx,vue,json,md}\" \"plugins/**/*.{js,ts,tsx,vue,json,md}\"",
"typecheck": "pnpm --filter \"./packages/*\" --filter \"./plugins/*\" exec tsc --noEmit",
"test": "pnpm --filter \"./packages/*\" --filter \"./plugins/*\" --if-present test",
"build:packages": "pnpm --filter \"./packages/*\" build",
"build:plugins": "pnpm --filter \"./plugins/*\" build",
"build": "pnpm run build:packages && pnpm run build:plugins",
"changeset": "changeset",
"changeset:version": "changeset version",
"release": "changeset publish",
"release-dev": "changeset version --snapshot dev && changeset publish --tag dev"
},
"license": "MIT",
"authors": [
{
"name": "Eldo Magan",
"email": "magan.eldo@gmail.com"
}
],
"packageManager": "pnpm@10.16.1",
"lint-staged": {
"packages/**/*.{js,ts,tsx,vue,json,md}": [
"prettier --write"
],
"plugins/**/*.{js,ts,tsx,vue,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^24.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5.9.2"
}
}