-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "@hrgui/chord-charts",
"version": "0.0.0-publish-using-github-actions.0",
"main": "./dist/chord-charts.umd.cjs",
"module": "./dist/chord-charts.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/chord-charts.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/chord-charts.umd.cjs"
}
}
},
"type": "module",
"types": "./dist/index.d.ts",
"author": "Harman Goei",
"license": "MIT",
"scripts": {
"build": "vite build",
"lint": "bun tsc --noEmit",
"test": "vitest",
"prepare": "./node_modules/.bin/husky",
"typedoc": "bunx typedoc --exclude \"**/*+(index|.spec|.e2e|.test).ts\" --entryPointStrategy Expand src"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@vitest/coverage-v8": "^3.0.5",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"typedoc": "^0.27.7",
"typedoc-plugin-markdown": "^4.4.2",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}