-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 835 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
34
{
"name": "@foxfirecodes/pi-extensions",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/foxfirecodes/pi-extensions.git"
},
"bugs": {
"url": "https://github.com/foxfirecodes/pi-extensions/issues"
},
"homepage": "https://github.com/foxfirecodes/pi-extensions#readme",
"type": "module",
"packageManager": "pnpm@9.12.2",
"scripts": {
"test": "pnpm -r test",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky",
"changeset": "changeset"
},
"lint-staged": {
"*.{js,ts,json,md,yaml}": "pnpm format:fix"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3"
},
"dependencies": {
"@changesets/cli": "^2.31.0"
}
}