forked from svecosystem/runed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 KB
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
69
{
"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 --reporter append-only --color 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",
"build:contributors": "pnpm -F docs build:contributors",
"ci:publish": "pnpm build:packages && changeset publish",
"lint": "prettier --check . && oxlint . && eslint .",
"format": "prettier --write .",
"check": "pnpm -r check",
"sync": "pnpm -r sync",
"new": "node ./scripts/add-utility.mjs"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.36.0",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "^1.16.0",
"eslint-plugin-svelte": "^3.12.3",
"globals": "^16.4.0",
"oxlint": "^1.16.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"readline-sync": "^1.4.10",
"svelte": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "^8.44.0",
"wrangler": "^4.38.0"
},
"type": "module",
"engines": {
"pnpm": ">=10.12.1",
"node": ">=20"
},
"packageManager": "pnpm@10.17.0"
}