-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.05 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "magic-comments-loader",
"version": "3.0.0",
"description": "Add webpack magic comments to your dynamic imports at build time.",
"main": "dist",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=22.21.1"
},
"repository": {
"type": "git",
"url": "https://github.com/morganney/magic-comments-loader.git"
},
"bugs": {
"url": "https://github.com/morganney/magic-comments-loader/issues"
},
"scripts": {
"prepack": "npm run build",
"build": "babel-dual-package src --out-dir dist",
"lint": "eslint . src __tests__ --ext .js",
"prettier": "prettier src __tests__ -w",
"test:unit": "node --experimental-vm-modules --no-warnings ./node_modules/.bin/jest",
"test:spec": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest -c jest.config.spec.js",
"test": "npm run test:unit && npm run test:spec"
},
"keywords": [
"webpack",
"magic comments",
"loader",
"dynamic import",
"webpackChunkName",
"build",
"config"
],
"author": "Morgan Ney <morganney@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@eslint/js": "^9.39.2",
"@rspack/core": "^1.0.5",
"babel-dual-package": "^1.2.3",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.12.2",
"globals": "^17.3.0",
"jest": "^30.2.0",
"memfs": "^4.6.0",
"prettier": "^3.2.4",
"webpack": "^5.105.0"
},
"dependencies": {
"magic-comments": "^3.0.0",
"magic-string": "^0.30.21",
"oxc-parser": "^0.112.0",
"schema-utils": "^4.3.3"
},
"prettier": {
"printWidth": 90,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
}
}