-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.77 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
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
{
"name": "vite-plugin-externalize-dependencies",
"version": "1.0.1",
"license": "MIT",
"description": "A simplified plugin for Vite that allows you to exclude specific dependencies from the Vite bundle during development.",
"repository": {
"type": "git",
"url": "https://github.com/MilanKovacic/vite-plugin-externalize-dependencies.git"
},
"author": "MilanKovacic",
"bugs": {
"url": "https://github.com/MilanKovacic/vite-plugin-externalize-dependencies/issues"
},
"homepage": "https://github.com/MilanKovacic/vite-plugin-externalize-dependencies#readme",
"keywords": [
"vite",
"vite-plugin",
"externalize-dependencies",
"bundle-exclusion",
"import-maps",
"webpack-externals",
"rollup-externals",
"dependency-management"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "npm run build && changeset publish",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"start:with-plugin": "cross-env DISABLE_PLUGIN=false vite dev --port 3001",
"start:without-plugin": "cross-env DISABLE_PLUGIN=true vite dev --port 3002",
"test:pluginApplied": "playwright test --reporter=list tests/plugin-applied.spec.ts",
"test:pluginDisabled": "playwright test --reporter=list tests/plugin-disabled.spec.ts",
"test:with-plugin": "start-server-and-test start:with-plugin http://localhost:3001 test:pluginApplied",
"test:without-plugin": "start-server-and-test start:without-plugin http://localhost:3002 test:pluginDisabled",
"test": "run-s test:with-plugin test:without-plugin",
"changeset": "changeset",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@playwright/test": "^1.36.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "3.0.3",
"start-server-and-test": "^2.0.0",
"typescript": "^5.1.6",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.5.0"
}
}