forked from svecosystem/runed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.77 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "root",
"description": "Monorepo for Runed.",
"private": true,
"version": "0.0.0",
"homepage": "https://runed.dev",
"contributors": [
{
"name": "Thomas G. Lopes",
"url": "https://thomasglopes.com"
},
{
"name": "Hunter Johnston",
"url": "https://x.com/huntabyte"
}
],
"funding": [
"https://github.com/sponsors/huntabyte",
"https://github.com/sponsors/tglide"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/svecosystem/runed"
},
"scripts": {
"dev": "pnpm sync && pnpm --parallel dev",
"test": "pnpm -r test",
"test:package": "pnpm -F \"./packages/**\" test",
"test:package:watch": "pnpm -F \"./packages/**\" test:watch",
"build": "pnpm -r build",
"build:packages": "pnpm -F \"./packages/**\" --parallel build",
"build:content": "pnpm -F \"./sites/**\" --parallel build:content",
"ci:publish": "pnpm build:packages && changeset publish",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"format": "prettier --write .",
"check": "pnpm -r check",
"sync": "pnpm -r sync",
"postinstall": "pnpm -r sync",
"new": "node ./scripts/add-utility.mjs"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@huntabyte/eslint-config": "^0.3.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"eslint": "^9.1.1",
"eslint-plugin-svelte": "2.38.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"readline-sync": "^1.4.10",
"svelte-eslint-parser": "^0.35.0",
"wrangler": "^3.52.0"
},
"type": "module",
"pnpm": {
"overrides": {
"bits-ui@0.16.0": "^0.21.5"
}
},
"engines": {
"pnpm": "^8.7.0",
"node": ">=18"
},
"packageManager": "pnpm@8.15.8"
}