-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "console-powers",
"version": "0.9.3",
"description": "Craft beautiful browser console messages. Debug & inspect data with elegant outputs. Small & tree-shakable.",
"license": "MIT",
"repository": "astoilkov/console-powers",
"funding": "https://github.com/sponsors/astoilkov",
"author": {
"name": "Antonio Stoilkov",
"email": "[email protected]",
"url": "https://astoilkov.com"
},
"keywords": [
"console",
"DevTools",
"inspect"
],
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"test": "yarn run build && vitest run --coverage",
"pg": "vite ./playground --open",
"release": "yarn run build && np"
},
"files": [
"index.js",
"index.d.ts",
"src/**/*.js",
"src/**/*.d.ts"
],
"devDependencies": {
"@vitest/coverage-v8": "^0.33.0",
"jsdom": "^22.1.0",
"np": "^8.0.4",
"prettier": "^3.0.3",
"type-fest": "^4.12.0",
"typescript": "^5.4.2",
"vitest": "^0.34.6"
},
"dependencies": {
"is-plain-obj": "^4.1.0"
}
}