-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "remove-attr",
"description": "A Vite plugin designed specifically for Vue.js projects that allows the removal of specified attributes in production builds. Useful for excluding attributes like 'data-testid' used in testing. Options include specific file extensions, attributes, ignored folders, and files.",
"private": false,
"version": "0.0.14",
"type": "module",
"types": "./dist/remove-attributes.d.ts",
"files": [
"dist"
],
"main": "./dist/remove-attributes.umd.cjs",
"module": "./dist/remove-attributes.js",
"exports": {
".": {
"import": "./dist/remove-attributes.js",
"require": "./dist/remove-attributes.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc --declaration --emitDeclarationOnly",
"build-only": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.2.1",
"typescript": "^5.0.2",
"vite": "^4.3.2"
},
"keywords": [
"vite",
"vite-plugin",
"vue",
"vuejs",
"remove-attributes",
"html",
"build-tool",
"javascript",
"typescript",
"optimization",
"web-development"
],
"repository": {
"type": "git",
"url": "https://github.com/mustafadalga/remove-attr.git"
},
"author": "Mustafa Dalga",
"license": "GPL-3.0"
}