-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.82 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.82 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
{
"//": [
"THIS FILE IS AUTOGENERATED. If you modify it, it will be rewritten by check-and-rewrite-package-json.js",
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
],
"name": "@lwc/ssr-compiler",
"version": "8.20.0",
"description": "Compile component for use during server-side rendering",
"keywords": [
"compiler",
"lwc",
"ssr"
],
"homepage": "https://lwc.dev",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git",
"directory": "packages/@lwc/ssr-compiler"
},
"bugs": {
"url": "https://github.com/salesforce/lwc/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"volta": {
"extends": "../../../package.json"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "rollup --config ../../../scripts/rollup/rollup.config.js",
"dev": "rollup --config ../../../scripts/rollup/rollup.config.js --watch --no-watch.clearScreen"
},
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/dist"
]
}
}
},
"dependencies": {
"@babel/types": "7.27.6",
"@lwc/errors": "8.20.0",
"@lwc/shared": "8.20.0",
"@lwc/template-compiler": "8.20.0",
"acorn": "8.15.0",
"astring": "^1.9.0",
"estree-toolkit": "^1.7.13",
"immer": "^10.1.1",
"meriyah": "^5.0.0"
},
"devDependencies": {
"@lwc/babel-plugin-component": "8.20.0",
"@types/estree": "^1.0.8"
}
}