-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
38 lines (38 loc) Β· 1.08 KB
/
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
36
37
38
{
"name": "root",
"private": true,
"version": "0.0.0",
"description": "Monorepo for mode-watcher.",
"author": "Hunter Johnston <https://github.com/huntabyte>",
"main": "index.js",
"scripts": {
"test": "pnpm -F mode-watcher test",
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"build:packages": "pnpm -F \"./packages/**\" --parallel build",
"ci:publish": "pnpm build:packages && changeset publish",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"check": "pnpm build:packages && pnpm -r check"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@huntabyte/eslint-config": "^0.3.2",
"@huntabyte/eslint-plugin": "^0.1.0",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"eslint": "^9.0.0",
"eslint-plugin-svelte": "^2.42.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "0.5.13",
"svelte": "^4.0.5",
"svelte-eslint-parser": "^0.34.1"
},
"type": "module",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.7.0"
}
}