-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@tenarix/ext-uploader",
"version": "1.0.1",
"description": "Tenarix extension uploader",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"lang": "en",
"scripts": {
"start": "node dist/index.mjs",
"build": "node scripts/build.js && tsc",
"dev": "node scripts/watch.js",
"clean": "node scripts/clean.js",
"lint": "eslint . --ext .js,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"prepare": "husky install"
},
"keywords": [
"tenarix",
"extension",
"uploader"
],
"author": "Akuqt",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.27.2",
"form-data": "^4.0.0",
"npm-packlist": "^5.1.3",
"ora": "^6.1.2",
"tar": "^6.1.11"
},
"devDependencies": {
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@types/npm-packlist": "^3.0.0",
"@types/tar": "^6.1.2",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"chalk": "^5.0.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-node": "^1.0.0"
}
}