-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "mucho_texto",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 14.0.0",
"npm": ">= 6.0.0"
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": "",
"keywords": [],
"author": {
"name": "",
"email": "",
"url": ""
},
"contributors": [],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"dev": "npm run clean && webpack --config webpack.config.js --mode development",
"build": "npm run clean && webpack --config webpack.config.js",
"reinstall": "rm -rf node_modules package-lock.json && npm install"
},
"devDependencies": {
"@types/chrome": "^0.0.254",
"@types/node": "^22.8.6",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vue/compiler-sfc": "^3.5.12",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"raw-loader": "^4.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"vue-loader": "^17.4.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"vue": "^3.5.12"
}
}