-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "with-wasm-zig",
"displayName": "With wasm zig",
"version": "0.0.0",
"description": "A demo of using WASM inside an extension with Plasmo.",
"author": "lgvic",
"scripts": {
"dev": "run-s build:resources dev:plasmo",
"dev:plasmo": "plasmo dev",
"build": "run-s build:*",
"build:resources": "zig build --cache-dir .plasmo/zig --prefix-lib-dir resources -p .",
"build:plasmo": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"plasmo": "0.59.2-alpha.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.0",
"@plasmohq/rps": "1.7.0",
"@types/chrome": "0.0.202",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"prettier": "2.7.1",
"typescript": "4.9.3"
},
"manifest": {
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval' http://localhost;object-src 'self';"
},
"host_permissions": [
"https://*/*"
]
}
}