-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "@simulacrum/repository",
"version": "0.0.0",
"private": true,
"description": "Composable simulations for testing, development, and application previews",
"scripts": {
"clean": "npm run clean -ws",
"test": "npm run test -ws",
"build": "npm run prepack -ws",
"prepack": "npm run prepack -ws",
"lint": "npm run lint -ws -- --fix",
"build:tsc": "tsc -b ./tsconfig.packages.json",
"watch:tsc": "npm run build && \"$(npm bin)/tsc\" -b ./tsconfig.packages.json --watch",
"covector": "npx covector"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thefrontside/simulacrum.git"
},
"workspaces": [
"packages/*"
],
"keywords": [
"simulation",
"emulation"
],
"author": "Charles Lowell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thefrontside/simulacrum/issues"
},
"homepage": "https://github.com/thefrontside/simulacrum#readme",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"volta": {
"node": "20.16.0",
"npm": "10.8.2"
},
"devDependencies": {
"@frontside/tsconfig": "^3.0.0",
"@graphql-codegen/cli": "^5.x.x"
}
}