-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "@simulacrum/repository",
"version": "0.0.0",
"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"
},
"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": {
"npm": ">=9"
},
"volta": {
"node": "20.16.0",
"npm": "10.8.2"
},
"devDependencies": {
"@frontside/tsconfig": "^3.0.0"
}
}