-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.46 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.46 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
{
"name": "my-plugin-name",
"version": "0.0.1",
"description": "Your plugin description here",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.umd.js",
"type": "module",
"author": "",
"repository": {
"type": "git",
"url": "Your git repo here"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint -c .eslintrc src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "rollup -c",
"start": "npm run build:lib && concurrently -c \"cyan.bold,magenta.bold\" \"npm:build:lib -- -w\" \"npm:start:demo\" ",
"start:demo": "webpack serve --mode=development --config ./demo/webpack.config.cjs",
"build:demo": "webpack --mode=production --config ./demo/webpack.config.cjs",
"test": "HERE GOES YOUR TEST TASK",
"test:prod": "npm run lint",
"prepare": "husky install"
},
"keywords": [
"motorcortex"
],
"lint-staged": {
"*.{json,md,yml,yaml,css}": [
"prettier --write"
],
"*.{js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"peerDependencies": {
"@donkeyclip/motorcortex": "7.5.4"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@babel/plugin-syntax-import-assertions": "^7.27.1",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@donkeyclip/motorcortex": "^9.22.1",
"@donkeyclip/motorcortex-player": "2.15.18",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-commonjs": "28.0.9",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"babel-loader": "10.0.0",
"concurrently": "^9.1.2",
"core-js": "^3.42.0",
"css-loader": "7.1.4",
"eslint": "^8.54.0",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "^7.37.5",
"husky": "9.1.7",
"lint-staged": "^16.1.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"rollup": "4.59.0",
"webpack": "^5.99.9",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4"
}
}