-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "@simulacrum/repository",
"version": "0.0.0",
"private": true,
"description": "Composable simulations for testing, development, and application previews",
"keywords": [
"emulation",
"simulation"
],
"homepage": "https://github.com/thefrontside/simulacrum#readme",
"bugs": {
"url": "https://github.com/thefrontside/simulacrum/issues"
},
"license": "MIT",
"author": "Frontside Engineering <engineering@frontside.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/thefrontside/simulacrum.git"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"check": "pnpm run \"/(tsc$)|(lint$)|(fmt$)/\"",
"clean": "pnpm -r --if-present run clean",
"covector": "pnpm dlx covector",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"lint": "pnpm -r --if-present run lint",
"lint:fix": "pnpm -r exec oxlint --fix",
"prepack": "pnpm -r --if-present run prepack",
"test": "pnpm -r --if-present run test",
"tsc": "pnpm -r --if-present run tsc"
},
"devDependencies": {
"@types/node": "^24.0.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"typescript": "5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.17.1"
}