-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.44 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
60
61
62
63
64
65
{
"name": "babel-plugin-sfcc-modules",
"version": "0.0.0-development",
"description": "Babel plugin to handle non-standard module paths used by Salesforce Commerce Cloud (SFCC)",
"keywords": [
"babel",
"babel-plugin",
"cartridge",
"commercecloud",
"demandware",
"import",
"module",
"require",
"salesforce",
"sfcc",
"sfra",
"supermodule"
],
"license": "MIT",
"author": "Jens Simon <https://github.com/jenssimon>",
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/babel-plugin-sfcc-modules"
},
"files": [
"/dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"semantic-release": "semantic-release"
},
"dependencies": {
"@babel/runtime": "^7.29.2",
"@babel/types": "^7.29.0",
"imports-visitor": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/register": "^7.28.6",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3",
"vite-plus": "latest"
},
"release": {
"branches": [
"main"
]
},
"packageManager": "pnpm@11.8.0"
}