-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
74 lines (74 loc) · 2.07 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
{
"name": "pev2",
"version": "1.14.0",
"homepage": "https://github.com/dalibo/pev2",
"license": "PostgreSQL license",
"type": "module",
"files": [
"dist"
],
"main": "./dist/pev2.umd.js",
"module": "./dist/pev2.es.js",
"exports": {
".": {
"import": "./dist/pev2.es.js",
"require": "./dist/pev2.umd.js"
},
"./dist/pev2.css": "./dist/pev2.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build-lib": "vue-tsc --noEmit && LIB=true vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-pattern .gitignore",
"prepare": "husky",
"test": "vitest --run"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"bootstrap": "^5.3.3",
"clarinet": "^0.12.6",
"d3": "^7.9.0",
"d3-flextree": "^2.1.2",
"highlight.js": "^11.11.1",
"humanize-duration": "^3.32.1",
"lodash": "^4.17.21",
"splitpanes": "^3.1.8",
"stream": "^0.0.3",
"vue": "^3.2.45",
"vue-clipboard3": "^2.0.0",
"vue-tippy": "^6.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@types/d3": "^7.4.3",
"@types/humanize-duration": "^3.27.1",
"@types/lodash": "^4.14.202",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.4.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.21.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"sass": "^1.58.0",
"typescript": "^5.7.3",
"vite": "^6.2.5",
"vite-plugin-singlefile": "^2.1.0",
"vitest": "^3.0.7",
"vue-tsc": "^2.2.4"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}