-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "lavadome",
"version": "0.0.0",
"private": true,
"description": "Secure DOM trees isolation and encapsulation leveraging ShadowDOM",
"workspaces": [
"packages/*"
],
"scripts": {
"build-core": "cd packages/core/ && npm run build && cd ..",
"build-javascript": "cd packages/javascript/ && npm run build && cd ..",
"build-react": "cd packages/react/ && npm run build && cd ..",
"build": "npm run build-core && npm run build-javascript && npm run build-react",
"publish": "npm publish --access=public -ws",
"setup": "npm install && npm run allow-scripts"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.1",
"esbuild": "0.19.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavamoat/LavaDome.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lavamoat/LavaDome/issues"
},
"homepage": "https://github.com/lavamoat/LavaDome#readme",
"dependencies": {
"@lavamoat/preinstall-always-fail": "^2.0.0"
},
"engines": {
"node": "^20 || >=22",
"npm": "^10"
},
"packageManager": "[email protected]",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"esbuild": false
}
}
}