-
Notifications
You must be signed in to change notification settings - Fork 407
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"//": [
"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/engine-core",
"version": "8.16.0",
"description": "Core LWC engine APIs.",
"keywords": [
"lwc"
],
"homepage": "https://lwc.dev",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git",
"directory": "packages/@lwc/engine-core"
},
"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": {
"@lwc/features": "8.16.0",
"@lwc/shared": "8.16.0",
"@lwc/signals": "8.16.0"
},
"devDependencies": {
"observable-membrane": "2.0.0"
}
}