-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 864 Bytes
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
{
"name": "cpp-lens-viewer",
"version": "1.5.2",
"description": "CPP Lens — browser-based Primavera P6 viewer. Live at criticalpathpartners.ca/viewer.",
"type": "module",
"private": true,
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "node esbuild.config.js",
"build:viewer": "node esbuild.config.js --target=viewer",
"build:lib": "node esbuild.config.js --target=lib",
"dev": "node esbuild.config.js --watch"
},
"dependencies": {
"@criticalpathpartners/lens-parser": "file:../cpp-lens-parser"
},
"devDependencies": {
"esbuild": "^0.20.0",
"happy-dom": "^14.0.0",
"jsdom": "^29.1.1",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danafitkowski/cpp-lens-viewer.git"
}
}