-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.89 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
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
77
78
79
80
81
82
{
"name": "@tomjs/unzip-crx",
"version": "1.1.3",
"description": "unzip chrome extension files (*.crx)",
"keywords": [
"unzip",
"crx",
"chrome",
"extension",
"manifest"
],
"author": {
"name": "Tom Gao",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/tomjs/unzip-crx.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "npm run build && jest",
"test:node": "npm run build && nve \"20,18,16,14\" npm exec jest",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"src/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"jszip": "^3.10.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@jest/globals": "^29.7.0",
"@tomjs/commitlint": "^3.3.0",
"@tomjs/eslint": "^3.3.0",
"@tomjs/prettier": "^1.4.1",
"@tomjs/tsconfig": "^1.7.1",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.39",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"nve": "^18.0.1",
"prettier": "^3.3.2",
"rimraf": "^5.0.9",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "~5.5.3"
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]"
}