This repository has been archived by the owner on Sep 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "@augu/tanuki",
"description": "🐻 Personal build-tool framework for building libraries and applications for my TypeScript projects",
"version": "1.0.3",
"main": "build/tanuki.cjs",
"types": "index.d.ts",
"license": "MIT",
"author": "Noel 🐾 <cutie@floofy.dev>",
"repository": "https://github.com/auguwu/Tanuki",
"bugs": "https://github.com/auguwu/Tanuki/issues",
"files": [
"bin",
"build",
"index.d.ts"
],
"bin": {
"tanuki": "./bin/tanuki"
},
"scripts": {
"build:ci": "eslint src --ext .ts && tsc --noEmit",
"format": "prettier --config ./.prettierrc.json --write src/**/*.ts",
"build": "yarn lint && yarn format && rimraf build && tanuki build --mode lib",
"lint": "tanuki lint",
"docs": "tanuki docs"
},
"dependencies": {
"@augu/utils": "1.5.3",
"consola": "2.15.3",
"cosmiconfig": "7.0.1",
"esbuild": "0.12.26",
"globby": "11.0.4",
"is-valid-identifier": "2.0.2",
"leeks.js": "0.2.2",
"ora": "5.4.1",
"progress": "2.0.3",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"ts-node": "10.2.1",
"typedoc": "0.22.3",
"typescript": "4.4.2",
"yargs": "17.1.1"
},
"devDependencies": {
"@augu/eslint-config": "2.2.0",
"@augu/tanuki": "1.0.0",
"@augu/tsconfig": "1.1.1",
"@types/eslint": "7.28.0",
"@types/node": "16.7.1",
"@types/progress": "2.0.5",
"@types/rimraf": "3.0.2",
"@types/yargs": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.4.0"
}
}