-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 924 Bytes
/
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
{
"name": "my-module",
"version": "1.0.0",
"description": "My new WXT module",
"repository": "your-org/my-module",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./plugin": {
"types": "./dist/plugin.d.mts",
"default": "./dist/plugin.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"packageManager": "[email protected]",
"scripts": {
"dev": "wxt",
"dev:build": "wxt build",
"check": "check",
"build": "unbuild",
"prepack": "unbuild",
"prepare": "wxt prepare"
},
"peerDependencies": {
"wxt": ">=0.18.10"
},
"devDependencies": {
"@aklinker1/check": "^1.3.1",
"prettier": "^3.3.2",
"publint": "^0.2.8",
"typescript": "^5.5.2",
"unbuild": "^2.0.0",
"vite": "^5.3.1",
"wxt": "^0.18.10"
}
}