-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 943 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
{
"name": "chrome-storage-ts",
"version": "1.0.3",
"description": "Typesafe Chrome Storage",
"scripts": {
"build": "tsup",
"test": "jest"
},
"author": "me@chaysen.com",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/chrome": "^0.0.246",
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Chaysen/chrome-storage-ts-utility.git"
},
"keywords": [
"typescript",
"chrome",
"storage",
"chrome-storage",
"chrome-local-storage"
],
"bugs": {
"url": "https://github.com/Chaysen/chrome-storage-ts-utility/issues"
},
"homepage": "https://github.com/Chaysen/chrome-storage-ts-utility#readme"
}