-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"type": "module",
"name": "hanav",
"version": "2.2.1",
"description": "A React navigation menu component. Super Smooth! Super Fast! Super Accessible!",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
"watch": "npm-watch",
"build": "rollup -c --bundleConfigAsCjs",
"t": "npx playwright test",
"t:ui": "npx playwright test --ui",
"t:h": "npx playwright test --headed",
"rp": "npx playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wswmsword/hanav.git"
},
"keywords": [
"navigation-menu",
"navigation-bar",
"nav-bar",
"accessibility"
],
"author": "wswmsword",
"license": "MIT",
"bugs": {
"url": "https://github.com/wswmsword/hanav/issues"
},
"homepage": "https://wswmsword.github.io/examples/hanav/",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@playwright/test": "^1.49.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.10.2",
"npm-watch": "^0.13.0",
"rollup": "^4.18.0",
"rollup-plugin-postcss": "^4.0.2"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"watch": {
"build": {
"patterns": [
"*"
],
"extensions": "css, js",
"ignore": [
"dist",
"node_modules",
"tests",
"tests-examples",
"test-results",
"playwright-report"
]
}
},
"sideEffects": false
}