-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.34 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@samply/lens",
"description": "A web component library for clinical data search and visualisation",
"version": "0.6.8",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/samply/lens.git"
},
"//": "Settings recommended by Vite but without CommonJS exports, see https://vite.dev/guide/build#library-mode",
"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",
"build:demo": " vite build --config vite.config.demo.js",
"preview:demo": "vite preview --config vite.config.demo.js",
"check": "svelte-check",
"prepublishOnly": "vite build",
"version": "npm version -m \"chore: release %s\"",
"schemagen": "bash scripts/generate-json-schema.bash",
"book": "mdbook serve book --open",
"typedoc": "typedoc src/index.ts --watch",
"test": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "^25.6.0",
"@types/uuid": "^11.0.0",
"ajv-cli": "^0.6.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.0",
"rollup": "^4.60.2",
"svelte": "^5.55.5",
"svelte-check": "^4.4.7",
"ts-json-schema-generator": "^2.9.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.5"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"chart.js": "^4.5.1",
"lucide-svelte": "^1.0.1",
"tailwindcss": "^4.3.0",
"uuid": "^14.0.0"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
}
}