-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
{
"name": "@gliff-ai/upload",
"version": "1.0.0",
"description": "gliff.ai UPLOAD - a React component for uploading multidimensional images",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx vite build -c vite.config.lib.ts && tsc --emitDeclarationOnly --outDir dist && tsc-alias -p tsconfig.json",
"watch": "npx vite build -c vite.config.lib.ts --watch",
"format": "npx --no-install prettier --write src/*.ts*",
"prettier": "npx --no-install prettier -c src/*.ts*",
"lint": "npm run lint:ts && npm run prettier",
"lint:ts": "npx --no-install eslint src/*.ts*",
"test": "jest --coverage --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliff-ai/upload.git"
},
"author": "",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/gliff-ai/upload/issues"
},
"homepage": "https://github.com/gliff-ai/upload#readme",
"devDependencies": {
"@gliff-ai/eslint-config": "^0.2.4",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"@types/utif": "^3.0.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^27.5.1",
"prettier": "=2.3.0",
"react": "^17.0.2",
"typescript": "^4.7.3",
"vite": "^2.9.9",
"vite-aliases": "^0.8.7"
},
"dependencies": {
"@types/cornerstone-core": "^2.3.0",
"@types/hammerjs": "^2.0.41",
"cornerstone-core": "^2.6.1",
"cornerstone-math": "^0.1.9",
"cornerstone-tools": "^6.0.6",
"cornerstone-wado-image-loader": "^4.1.3",
"dicom-parser": "^1.8.13",
"hammerjs": "^2.0.8",
"ts-md5": "^1.2.11",
"tsc-alias": "^1.6.8",
"utif": "^3.1.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": "^17.0.0"
}
}