-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "versiwfekit",
"version": "1.0.0",
"description": "Frontend Engineering Kit used by versiw",
"author": "versiw",
"license": "MIT",
"main": "index.js",
"scripts": {
"postinstall": "simple-git-hooks",
"build": "pnpm -r --filter=./packages/* run build",
"format": "prettier --write --cache --ignore-unknown .",
"commit": "versiwfekit-verify-commit",
"changeset": "changeset",
"changeset:exit": "changeset pre exit",
"changeset:beta": "changeset pre enter beta",
"changeset:version": "changeset version",
"changeset:publish": "pnpm run build && changeset publish",
"dev:vfk": "pnpm --filter create-vfk run build && vfk",
"dev:commit": "pnpm --filter verify-commit run build && versiwfekit-verify-commit"
},
"keywords": [
"versiw",
"versiwfekit",
"prettier",
"prettier-config"
],
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.14.0",
"create-vfk": "workspace:*",
"@versiwfekit/prettier": "workspace:*",
"@versiwfekit/verify-commit": "workspace:*",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.12.1",
"typescript": "^5.8.2",
"vite": "^6.2.3",
"vite-plugin-dts": "^4.5.3"
},
"prettier": "@versiwfekit/prettier",
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
]
}
}