-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 887 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 887 Bytes
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
{
"name": "svg-jar",
"version": "1.0.0",
"private": true,
"description": "A collection of tools for working with SVGs on the web.",
"keywords": [],
"repository": {
"type": "git",
"url": "git@github.com:svg-jar/plugin.git"
},
"license": "MIT",
"author": "Liam Potter <liam@liampotter.co.uk>",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"sortPackageJson": "pnpm dlx sort-package-json",
"test": "pnpm --filter @svg-jar/plugin test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.5.0",
"eslint": "^10.2.0",
"jiti": "^2.6.1",
"prettier": "^3.8.2",
"release-plan": "^0.18.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
},
"packageManager": "pnpm@10.32.1"
}