-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "console-grid",
"version": "2.2.3",
"description": "Console log a grid",
"main": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"types": "./lib/index.d.ts",
"scripts": {
"link": "sf link ./ -f",
"build": "node ./scripts/build.mjs",
"test": "node ./scripts/test.mjs",
"patch": "npm run test && npm run build && sf publish patch -r"
},
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cenfun/console-grid.git"
},
"devDependencies": {
"chalk": "^5.4.1",
"eastasianwidth": "^0.3.0",
"eight-colors": "^1.3.1",
"eslint": "^9.17.0",
"eslint-config-plus": "^2.0.2",
"eslint-plugin-html": "^8.1.2",
"js-beautify": "^1.15.1",
"papaparse": "^5.4.1"
}
}