-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "tiny-package-manager",
"version": "1.1.0",
"description": "The tiny package manager.",
"main": "dist/index.js",
"repository": "g-plane/tiny-package-manager",
"author": "Pig Fang <[email protected]>",
"license": "MIT",
"private": false,
"bin": {
"tiny-pm": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsc -p . -w",
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"lint": "eslint . -f=beauty --ext=.ts",
"test": "npm run lint",
"fmt": "dprint fmt"
},
"engines": {
"node": ">8"
},
"dependencies": {
"find-up": "^5.0.0",
"fs-extra": "^11.1.0",
"js-yaml": "^4.1.0",
"log-update": "^4.0.0",
"progress": "^2.0.3",
"semver": "^7.3.8",
"tar": "^6.1.13",
"undici": "^5.26.4",
"yargs": "^17.6.2"
},
"devDependencies": {
"@gplane/tsconfig": "^5.0.0",
"@types/fs-extra": "^11.0.1",
"@types/js-yaml": "^4.0.5",
"@types/progress": "^2.0.5",
"@types/semver": "^7.3.13",
"@types/tar": "^6.1.3",
"@types/yargs": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"dprint": "^0.45.0",
"eslint": "^8.33.0",
"eslint-config-gplane": "^6.2.2",
"eslint-formatter-beauty": "^3.0.0",
"typescript": "^4.9.4"
}
}