-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.2 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
{
"name": "@4a/asp",
"version": "1.0.0",
"description": "color log, 染色日志",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "gavinning",
"license": "MIT",
"module": "dist/asp.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepare": "npm run build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/asp.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/asp.esm.js",
"limit": "10 KB"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/gavinning/asp.git"
},
"keywords": [
"log",
"logger",
"color-log",
"color-logger",
"日志",
"染色日志",
"彩色日志"
],
"bugs": {
"url": "https://github.com/gavinning/asp/issues"
},
"homepage": "https://github.com/gavinning/asp#readme",
"dependencies": {
"@base2/pretty-print-object": "^1.0.1",
"colors": "^1.4.0"
},
"devDependencies": {
"@types/node": "^16.6.2",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=10"
}
}