-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.61 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
{
"name": "tempo-monorepo",
"version": "2.9.3",
"private": true,
"description": "Magma Computing Monorepo",
"repository": {
"type": "git",
"url": "https://github.com/magmacomputing/magma.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"test": "vitest run",
"build:tempo": "npm run build --workspace=@magmacomputing/tempo",
"build:library": "npm run build --workspace=@magmacomputing/library",
"clean": "tsc -b --clean",
"version:sync": "node -e \"require('child_process').execSync('npm version ' + process.env.npm_package_version + ' -w @magmacomputing/tempo -w @magmacomputing/library --no-git-tag-version', {stdio:'inherit'})\"",
"repl": "npm run repl --workspace=@magmacomputing/tempo",
"core": "npm run core --workspace=@magmacomputing/tempo",
"docs:dev": "npm run docs:dev --workspace=@magmacomputing/tempo",
"docs:build": "npm run docs:build --workspace=@magmacomputing/tempo",
"docs:preview": "npm run docs:preview --workspace=@magmacomputing/tempo",
"test:dist": "npm run build:library && npm run build:tempo && cross-env TEST_DIST=true vitest run"
},
"devDependencies": {
"@js-temporal/polyfill": "^0.5.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/google.maps": "^3.64.0",
"@types/hammerjs": "^2.0.46",
"@types/jquery": "^4.0.0",
"@types/node": "^25.6.2",
"@vitest/ui": "^2.1.9",
"cross-env": "^10.1.0",
"markdown-it-mathjax3": "^4.3.2",
"rollup": "^4.60.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^2.1.9"
},
"overrides": {
"esbuild": "^0.25.0"
}
}