-
Notifications
You must be signed in to change notification settings - Fork 407
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"//": [
"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/compiler",
"version": "8.16.0",
"description": "LWC compiler",
"keywords": [
"lwc"
],
"homepage": "https://lwc.dev",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git",
"directory": "packages/@lwc/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/core": "7.26.9",
"@babel/plugin-transform-async-generator-functions": "7.26.8",
"@babel/plugin-transform-async-to-generator": "7.25.9",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/plugin-transform-object-rest-spread": "7.25.9",
"@locker/babel-plugin-transform-unforgeables": "0.22.0",
"@lwc/babel-plugin-component": "8.16.0",
"@lwc/errors": "8.16.0",
"@lwc/shared": "8.16.0",
"@lwc/ssr-compiler": "8.16.0",
"@lwc/style-compiler": "8.16.0",
"@lwc/template-compiler": "8.16.0"
}
}