This repository was archived by the owner on Jul 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.91 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@alduino/pkg-lib",
"version": "0.6.2",
"description": "Bundler for libraries",
"main": "index.js",
"module": "index.mjs",
"typings": "index.d.ts",
"bin": {
"pkg-lib": "bin.js"
},
"scripts": {
"build": "ts-node bin.ts build",
"watch": "ts-node bin.ts watch",
"release": "ts-node bin.ts build && changeset publish",
"format": "prettier . --write && eslint --fix .",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alduino/pkg-lib.git"
},
"keywords": [
"bundler",
"library"
],
"author": "Alduino",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alduino/pkg-lib/issues"
},
"homepage": "https://github.com/Alduino/pkg-lib#readme",
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/helper-plugin-utils": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-react-jsx-development": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.15.0",
"@babel/traverse": "^7.15.0",
"@esbuild-plugins/node-resolve": "^0.1.4",
"@microsoft/api-documenter": "^7.13.39",
"@microsoft/api-extractor": "^7.18.5",
"@microsoft/api-extractor-model": "^7.13.5",
"@microsoft/tsdoc": "^0.13.2",
"async-mutex": "^0.3.1",
"chokidar": "^3.5.2",
"consola": "^2.15.3",
"esbuild": "^0.14.0",
"execa": "^5.1.1",
"fast-glob": "^3.2.7",
"micromatch": "^4.0.4",
"node-abort-controller": "^3.0.0",
"resolve-bin": "^1.0.0",
"sade": "^1.7.4",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"devDependencies": {
"@babel/types": "7.18.8",
"@changesets/cli": "2.23.1",
"@types/babel__core": "7.1.19",
"@types/babel__helper-plugin-utils": "7.10.0",
"@types/babel__traverse": "7.17.1",
"@types/micromatch": "4.0.2",
"@types/node": "16.11.43",
"@types/resolve-bin": "0.4.1",
"@types/sade": "1.7.4",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "7.30.1",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"prettier": "2.7.1",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"peerDependencies": {
"typescript": "^4.3.5"
},
"files": [
"dist",
"bin.*",
"index.*",
"docgen.*",
"dev.d.ts"
]
}