-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@samply/lens",
"description": "A web component library for clinical data search and visualisation",
"version": "0.6.6",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/samply/lens.git"
},
"type": "module",
"files": [
"dist",
"schema"
],
"module": "dist/lens.js",
"types": "dist/lens.d.ts",
"exports": {
".": "./dist/lens.js",
"./style.css": "./dist/lens.css"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"demo:build": " vite build --config vite.config.demo.ts",
"demo:preview": "vite preview --config vite.config.demo.ts",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest --run",
"schema:generate": "node scripts/generate-json-schema.ts",
"schema:check": "node scripts/generate-json-schema.ts --check",
"schema:validate": "node scripts/validate-json-files.ts",
"typedoc:dev": "typedoc src/index.ts --watch",
"typedoc:build": "typedoc src/index.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "^25.0.9",
"@types/uuid": "^11.0.0",
"ajv-cli": "^5.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.0.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.0",
"prettier-plugin-svelte": "^3.4.1",
"rollup": "^4.55.1",
"svelte": "^5.46.4",
"svelte-check": "^4.3.5",
"ts-json-schema-generator": "^2.4.0",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.17"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chart.js": "^4.5.1",
"uuid": "^13.0.0"
}
}