-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "comelog",
"version": "2.0.0",
"description": "🎨 Comely style logs for the browser.",
"main": "dist/comelog.cjs",
"module": "dist/comelog.mjs",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "npx rollup -c rollup.config.mjs",
"preview": "vite preview",
"lint": "npx eslint src/**",
"prettier": "npx prettier src/** --write",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverrage": "npx vitest --coverage",
"publish:npm": "pnpm run build && pnpm publish"
},
"keywords": [
"log",
"console",
"comely",
"style",
"chalk",
"logger",
"print"
],
"author": "Yukiniro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yukiniro/comelog"
},
"dependencies": {
"camelcase-to-kebab": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@yukiniro/eslint-config": "^0.0.7",
"bittydash": "^0.7.0",
"c8": "^8.0.0",
"eslint": "^8.11.0",
"prettier": "^3.0.0",
"prettier-eslint": "^16.0.0",
"rollup": "^4.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.3.1",
"typescript": "^5.0.4",
"vite": "^4.2.2",
"vitest": "^1.0.0"
}
}