-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.21 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
{
"name": "dragifyjs-core-cli",
"version": "1.0.0",
"description": "dragifyJS CLI tool for the plugin development",
"bin": {
"dragifyjs-core-cli": "dist/cli.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "cross-env BUILD_MODE=production webpack --config ./webpack.cli.ts",
"build:watch": "webpack --config ./webpack.cli.ts --watch",
"lint": "eslint src",
"patch": "npm version patch -m 'Bump v%s'",
"test": "jest",
"prepare": "husky"
},
"keywords": [
"dragifyjs",
"plugin",
"dev",
"cli"
],
"author": "Anand Kumar",
"license": "MIT",
"dependencies": {
"@babel/core": "7.25.2",
"@babel/plugin-transform-runtime": "7.25.4",
"@babel/preset-env": "7.25.4",
"@babel/runtime": "7.25.6",
"babel-loader": "9.1.3",
"chalk": "^4.1.2",
"core-js": "3.38.1",
"dts-bundle-generator": "^8.0.1",
"html-webpack-plugin": "5.6.0",
"inquirer": "^8.2.5",
"listr": "^0.14.3",
"lodash.template": "^4.5.0",
"rimraf": "^4.1.2",
"spdx-license-list": "^6.6.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@swc/register": "^0.1.10",
"@types/webpack-node-externals": "^3.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"esbuild-register": "^3.6.0",
"eslint": "^9.10.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"semantic-release": "^24.1.1",
"sucrase": "^3.35.0",
"ts-node": "^10.9.2",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
],
"**/*.md": [
"prettier --write"
]
},
"engines": {
"node": ">=12.0.0"
}
}