-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.39 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
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
84
85
86
87
88
89
90
{
"name": "@lesjoursfr/bootstrap-context-menu",
"version": "1.1.1",
"description": "Contextual Menu for Bootstrap.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lesjoursfr/bootstrap-context-menu.git"
},
"homepage": "https://github.com/lesjoursfr/bootstrap-context-menu#readme",
"bugs": {
"url": "https://github.com/lesjoursfr/bootstrap-context-menu/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "22.x || 24.x || 26.x"
},
"browserslist": [
"> 1%",
"last 3 versions",
"not dead"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"freshlock": "rm -rf node_modules/ && rm .yarn/install-state.gz && rm yarn.lock && yarn",
"eslint-check": "eslint",
"eslint-fix": "eslint --fix",
"stylelint-check": "stylelint **/*.scss",
"stylelint-fix": "stylelint **/*.scss --fix",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"build-esm": "tsc && node assets.js",
"build-browser": "webpack --mode production --config ./server/webpack.config.js --progress",
"build": "npm run build-esm && npm run build-browser",
"server": "webpack serve --mode development --config ./server/webpack.config.js --hot --open"
},
"keywords": [
"bootstrap",
"context",
"menu"
],
"dependencies": {
"@lesjoursfr/browser-tools": "^3.1.5"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@fortawesome/fontawesome-free": "7.3.1",
"@popperjs/core": "2.11.8",
"@tsconfig/next": "2.0.6",
"@types/bootstrap": "5.2.11",
"@types/node": "24.13.3",
"@types/webpack-env": "1.18.8",
"bootstrap": "5.3.8",
"css-loader": "7.1.4",
"cssnano": "8.0.2",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"fs-extra": "11.4.0",
"globals": "17.8.0",
"mini-css-extract-plugin": "2.10.2",
"minimizer-webpack-plugin": "5.6.1",
"postcss": "8.5.23",
"prettier": "3.9.6",
"sass": "1.102.0",
"sass-loader": "17.0.0",
"stylelint": "17.14.1",
"stylelint-config-standard-scss": "17.0.0",
"ts-loader": "9.6.2",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"webpack": "5.109.0",
"webpack-cli": "7.2.1",
"webpack-dev-server": "6.0.0"
},
"peerDependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8"
},
"dependenciesMeta": {
"@parcel/watcher": {
"built": true
}
},
"packageManager": "yarn@4.17.1"
}