-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@samply/lens",
"description": "A web component library for clinical data search and visualisation",
"version": "0.4.3",
"type": "module",
"module": "dist/lens.js",
"main": "dist/lens.umd.js",
"types": "dist/types.d.ts",
"styles": "dist/style.css",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/samply/lens.git"
},
"exports": {
".": {
"import": "./dist/lens.js",
"require": "./dist/lens.umd.js",
"types": "./dist/types.d.ts",
"styles": "./dist/style.css"
}
},
"license": "MIT",
"scripts": {
"start": "npm run dev -s",
"dev": "vite --config vite.demo.config.ts",
"build": "vite build",
"build:demo": "node options_tester.cjs && vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"check": "node options_tester.cjs && svelte-check --tsconfig ./tsconfig.json",
"lint": "lint-staged",
"watch": "rimraf dist && vite build --watch",
"link": "wait-on dist/types.d.ts && cd dist/ && npm link",
"prepublishOnly": "npm run build -s",
"security:check": "npm audit --omit=dev --audit-level high",
"prepare": "husky install",
"version": "npm version -m \"build: release version %s\""
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@tsconfig/svelte": "^5.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.6",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^9.0.9",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"rimraf": "^5.0.5",
"svelte": "^4.0.0",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.4.0",
"typescript": "^5.0.0",
"vite": "^4.5.2",
"vite-plugin-dts": "^3.7.2",
"vitest": "^0.34.2",
"wait-on": "^7.2.0"
},
"dependencies": {
"@exodus/schemasafe": "^1.3.0",
"chart.js": "^4.4.0",
"uuid": "^9.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,svelte}": [
"eslint --fix",
"prettier --write"
]
}
}