-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
67 lines (67 loc) · 2.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "phoenix-event-display",
"version": "3.0.5",
"description": "API for web-based experiment independent event display.",
"main": "dist/index",
"types": "dist/index",
"author": "Phoenix contributors (https://github.com/HSF/phoenix/graphs/contributors)",
"license": "Apache-2.0",
"homepage": "http://github.com/HSF/phoenix/tree/main/packages/phoenix-event-display#readme",
"repository": {
"type": "git",
"url": "git://github.com/HSF/phoenix.git"
},
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"tsc:build": "tsc -p tsconfig.build.json",
"start": "yarn tsc:build --watch",
"build": "rimraf ./dist && yarn tsc:build",
"build:esm": "yarn tsc:build --module es2018 --target es5 --outDir dist/esm",
"build:cjs": "yarn tsc:build --module commonjs --target es5 --outDir dist/cjs",
"build:bundle": "webpack -c configs/webpack.conf.js",
"tsc-d": "yarn tsc:build --declaration --emitDeclarationOnly --esModuleInterop --outFile dist/index.d.ts",
"prepublishOnly": "yarn build:bundle",
"docs": "node scripts/gen-api-docs.js",
"docs:coverage": "yarn compodoc -p configs/compodoc.conf.json --coverageTest 100",
"test": "jest --config configs/jest.conf.js",
"test:coverage": "yarn test --coverage",
"test:ci": "yarn test:coverage --maxWorkers=2 --silent",
"test:debug": "yarn test --runInBand",
"prepare": "yarn build",
"prettier": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore",
"prettier:check": "yarn prettier --check .",
"prettier:write": "yarn prettier --write .",
"eslint": "eslint src/**/*.ts ",
"eslint:fix": "yarn eslint --fix"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@tweenjs/tween.js": "^23.1.3",
"dat.gui": "^0.7.9",
"html2canvas": "^1.4.1",
"jsroot": "^7.8.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"stats-js": "^1.0.1",
"three": "~0.170.0"
},
"devDependencies": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@compodoc/compodoc": "^1.1.26",
"@types/dat.gui": "^0.7.13",
"@types/three": "~0.170.0",
"esbuild-loader": "^4.2.2",
"jest": "^29.7.0",
"ts-jest": "~29.2.5",
"typescript": "~5.5.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"jspdf": "*"
}
}