-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "console-next",
"version": "0.1.10",
"description": "This allows you to do some weird and useless in the browser's devtools",
"keywords": [
"console",
"log",
"devtools",
"debug",
"npm"
],
"license": "MIT",
"author": "Pom Joy",
"repository": {
"type": "git",
"url": "git+https://github.com/FliPPeDround/console-next.git"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.mjs"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"release": "bumpp && npm publish"
},
"bugs": {
"url": "https://github.com/FliPPeDround/console-next/issues"
},
"homepage": "https://github.com/FliPPeDround/console-next#readme",
"devDependencies": {
"@antfu/eslint-config": "^0.23.1",
"@types/node": "^17.0.35",
"bumpp": "^8.2.1",
"eslint": "^8.16.0",
"tsup": "^6.2.3",
"typescript": "^4.4.4"
}
}