-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "vite-plugin-strip-code",
"version": "1.1.0",
"description": "A vite plugin that strips marked blocks from any code processed by vite.",
"license": "MIT",
"type": "module",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kudashevs/vite-plugin-strip-code.git"
},
"homepage": "https://github.com/kudashevs/vite-plugin-strip-code",
"bugs": "https://github.com/kudashevs/vite-plugin-strip-code/issues",
"keywords": [
"vite",
"strip code",
"strip blocks",
"strip code blocks",
"remove code",
"remove blocks",
"remove code blocks",
"vite-plugin",
"vite strip code",
"vite remove blocks"
],
"authors": [
{
"name": "Sergey Kudashev",
"email": "kudashevs@gmail.com"
}
],
"peerDependencies": {
"vite": ">=3.0.0"
},
"dependencies": {
"@types/node": "^22.10.1",
"strip-code": "^1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@vitest/coverage-v8": "^2.1.4",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"prettier": "^2.5.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"scripts": {
"test": "vitest run",
"test:unit": "npm run test ./test/unit/",
"test:spec": "npm run test ./test/acceptance/",
"test:coverage": "vitest run --coverage",
"lint": "eslint --cache .",
"format": "prettier --write \"**/*.+(js|json)\" --",
"check": "tsc"
}
}