-
-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.75 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.75 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@plasmohq/persistent",
"version": "0.0.6",
"description": "A couple of hacks to keep the BGSW alive in a library",
"type": "module",
"module": "./src/index.ts",
"types": "./src/index.ts",
"typesVersions": {
"*": {
"background": [
"./src/background.ts"
]
}
},
"publishConfig": {
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"background": [
"./dist/background.d.ts"
]
}
}
},
"exports": {
"./background": {
"types": "./dist/background.d.ts",
"import": "./dist/background.js",
"require": "./dist/background.cjs"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:*",
"dev:compile": "tsup --watch",
"dev:test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"build": "tsup",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "pnpm build"
},
"author": "Plasmo Corp. <foss@plasmo.com>",
"contributors": [
"@louisgv"
],
"repository": {
"type": "git",
"url": "https://github.com/PlasmoHQ/plasmo.git",
"directory": "api/persistent"
},
"license": "MIT",
"keywords": [
"browser-extension",
"chrome-extension"
],
"devDependencies": {
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@plasmo/config": "workspace:*",
"@types/chrome": "0.0.312",
"@types/node": "24.12.0",
"cross-env": "7.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.3.0",
"tsup": "8.4.0",
"typescript": "5.8.2"
}
}