-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"author": "Chris Shaw <[email protected]>",
"description": "Dynamic imports transformer and CSS path rewriter for Vite when using Adobe Experience Manager",
"homepage": "https://aemvite.dev/guide/front-end/dynamic-imports/",
"license": "Apache-2.0",
"name": "@aem-vite/import-rewriter",
"repository": {
"type": "git",
"url": "https://github.com/aem-vite/import-rewriter"
},
"bugs": {
"url": "https://github.com/aem-vite/import-rewriter/issues"
},
"version": "9.0.0",
"type": "module",
"engines": {
"node": "^18.0.0 || >=20.0.0",
"pnpm": ">= 8.5"
},
"keywords": [
"aem",
"vite",
"rollup",
"dynamic-import",
"dynamic",
"import",
"build-tools"
],
"files": [
"lib"
],
"sideEffects": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"import": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./lib/index.cjs",
"types": "./lib/index.d.cts"
}
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --ext .ts src/**",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"footer-max-line-length": [
2,
"always",
300
]
}
},
"dependencies": {
"debug": "^4.3.4",
"es-module-lexer": "^1.4.1",
"magic-string": "^0.30.5",
"rollup": "^4.5.0",
"vite": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.12",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"semantic-release": "^22.0.8",
"tsup": "^8.0.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"vite": "^5.0.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
}