-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
35 lines (35 loc) · 849 Bytes
/
package.json
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
{
"name": "vim-react-snippets",
"type": "module",
"version": "0.0.1",
"description": "Reusable Javascript and Typescript vim snippets for UltiSnips and developing React apps.",
"repository": "git@github.com:mlaursen/vim-react-snippets.git",
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prepare": "husky",
"create-toc": "tsx scripts/create-toc.ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"husky": "^9.1.3",
"lint-staged": "^15.2.7",
"markdown-toc": "^1.2.0",
"prettier": "^3.3.3",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
},
"volta": {
"node": "20.12.2",
"pnpm": "9.6.0"
},
"lint-staged": {
"README.md": [
"pnpm run create-toc"
],
"**/*.{ts,js}": [
"prettier --write"
]
}
}