-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
35 lines (35 loc) · 851 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": "[email protected]:mlaursen/vim-react-snippets.git",
"author": "Mikkel Laursen <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prepare": "husky",
"create-toc": "tsx scripts/create-toc.ts"
},
"devDependencies": {
"@types/node": "^22.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"volta": {
"node": "22.14.0",
"pnpm": "10.7.1"
},
"lint-staged": {
"README.md": [
"pnpm run create-toc"
],
"**/*.{ts,js}": [
"prettier --write"
]
}
}