-
Notifications
You must be signed in to change notification settings - Fork 682
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.29 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
{
"name": "localization-plugin-test-03",
"description": "Building this project exercises @microsoft/localization-plugin. This tests that the plugin works correctly with the exportAsDefault option set to true.",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "heft build --clean",
"serve": "heft start",
"_phase:build": "heft run --only build -- --clean"
},
"dependencies": {
"@rushstack/heft": "workspace:*",
"@rushstack/heft-webpack4-plugin": "workspace:*",
"@rushstack/node-core-library": "workspace:*",
"@rushstack/set-webpack-public-path-plugin": "^4.1.16",
"@rushstack/webpack4-localization-plugin": "workspace:*",
"@rushstack/webpack4-module-minifier-plugin": "workspace:*",
"@types/webpack-env": "1.18.8",
"eslint": "~9.37.0",
"html-webpack-plugin": "~4.5.2",
"local-node-rig": "workspace:*",
"ts-loader": "6.0.0",
"typescript": "~5.8.2",
"webpack": "~4.47.0",
"webpack-bundle-analyzer": "~4.5.0",
"webpack-dev-server": "~4.9.3"
},
"exports": {
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
}
}