forked from mtoyoda/sl
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.34 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.34 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
{
"name": "sl-repo",
"version": "1.0.0",
"private": true,
"description": "SL (Steam Locomotive) runs across your terminal when you type \"sl\" as you meant to type \"ls\". It's just a joke command.",
"keywords": [
"steam",
"locomotive",
"trains",
"sl",
"ls"
],
"homepage": "https://github.com/scaryrawr/sl#readme",
"bugs": {
"url": "https://github.com/scaryrawr/sl/issues"
},
"repository": "git+https://github.com/scaryrawr/sl.git",
"license": "MIT",
"author": "Mike Wallio",
"main": "index.js",
"workspaces": [
"libraries/*",
"apps/*"
],
"scripts": {
"analyze": "bun run --cwd apps/page analyze",
"build": "bun run build:websl && bun run build:page",
"build:libsl": "cargo build --manifest-path libraries/libsl/Cargo.toml --release",
"build:page": "bun run --cwd apps/page build",
"build:websl": "bun run --cwd libraries/websl build",
"build:websl:rust": "wasm-pack build libraries/websl --target web --release",
"dev": "bun run dev:page",
"dev:page": "bun run --cwd apps/page dev",
"dev:websl": "bun run --cwd libraries/websl dev",
"format": "prettier \"{.,**}.{tsx,ts,js,less,json,md,yaml}\" --write",
"format:websl": "bun run --cwd libraries/websl format",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "bun run start:page",
"start:page": "bun run --cwd apps/page start",
"test": "bun run test:websl && bun run test:page",
"test:libsl": "cargo test --manifest-path libraries/libsl/Cargo.toml",
"test:page": "bun run --cwd apps/page test",
"test:page:e2e": "bun run --cwd apps/page test:e2e",
"test:websl": "bun run --cwd libraries/websl test",
"test:websl:rust": "wasm-pack test --headless --firefox libraries/websl",
"typecheck": "bun run typecheck:page",
"typecheck:page": "bun run --cwd apps/page typecheck"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"packageManager": "bun@1.3.3"
}