-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.76 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
{
"name": "@mirawision/chrome-wings",
"version": "1.0.1",
"description": "A TypeScript library for managing Chrome extension state across different contexts using a simple and intuitive API.",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./global-wing": {
"types": "./global-wing.d.ts",
"default": "./global-wing.js"
},
"./local-wing": {
"types": "./local-wing.d.ts",
"default": "./local-wing.js"
},
"./popup-wing": {
"types": "./popup-wing.d.ts",
"default": "./popup-wing.js"
},
"./side-wing": {
"types": "./side-wing.d.ts",
"default": "./side-wing.js"
}
},
"scripts": {
"build": "tsc",
"start": "npm run build && node index.js",
"test": "jest",
"pack": "npm pack",
"prepublish": "npm run build",
"publish": "npm publish --access public"
},
"keywords": [
"chrome",
"extension",
"state management",
"typescript",
"chrome extension",
"browser extension",
"state",
"storage",
"global state",
"local state",
"popup state",
"side panel",
"chrome api",
"wings"
],
"author": "Yelysei Lukin <yelysei277@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/MiraWision/chrome-wings.git"
},
"bugs": {
"url": "https://github.com/MiraWision/chrome-wings/issues"
},
"homepage": "https://mirawision.github.io/chrome-wings",
"license": "MIT",
"dependencies": {
"@mirawision/chrome-pulse": "1.0.1",
"@mirawision/wings": "1.0.0"
},
"devDependencies": {
"@types/chrome": "0.1.3",
"@types/jest": "29.5.12",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
}
}