-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 786 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 786 Bytes
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
{
"name": "mega-menu",
"private": false,
"version": "1.0.0",
"description": "Megamenu web component",
"main": "dist/index.umd.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "npx playwright test"
},
"author": "Arco Mul",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.51.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.10",
"vite": "^6.2.2"
}
}