-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "@plasmohq/permission-ui",
"version": "0.2.5",
"description": "A set of react component to control extension permission",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:compile",
"dev:compile": "tsup src/index.tsx --dts-resolve --format esm --watch --sourcemap",
"dev:test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"build": "tsup src/index.tsx --dts-resolve --format esm --minify --clean",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "run-s build"
},
"author": "Plasmo Corp. <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/PlasmoHQ/puro.git"
},
"license": "MIT",
"keywords": [
"react",
"context",
"providers"
],
"peerDependencies": {
"react": ">=17 || >=18"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@plasmohq/storage": "workspace:*",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"cross-env": "7.0.3",
"jest": "29.7.0",
"react": "18.2.0",
"ts-jest": "29.1.1",
"tsup": "8.0.1",
"typescript": "5.3.3"
}
}