-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "@miwt/adb",
"version": "0.9.0",
"description": "you can use the ADB command in the nodejs program",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"bin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/miwufe/node-adb"
},
"bugs": {
"url": "https://github.com/miwufe/node-adb"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup src/index.ts --format cjs,esm --dts --splitting --onSuccess \"cp src/*.d.ts dist\"",
"dev": "tsup src/*.ts --watch src",
"release": "npm run build && npm run ver",
"lint": "eslint --ext .js,.ts,.json ./",
"fix": "eslint --ext .js,.ts,.json ./ --fix",
"format": "prettier --config ./.prettierrc --write \"./**/*.{ts,js,json}\" ",
"test": "vitest",
"prepare": "husky install",
"v": "standard-version",
"vp": "standard-version -r patch",
"vm": "standard-version -r minor",
"vr": "standard-version -r preprelese"
},
"author": "dongwa",
"license": "MIT",
"keywords": [
"adb",
"android",
"adb shell",
"shell"
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"prettier": "^2.6.2",
"standard-version": "^9.5.0",
"tsup": "^6.2.2",
"typescript": "^4.6.4",
"vite": "^3.0.9",
"vitest": "^0.22.1"
}
}