generated from Jujulego/library-tpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
65
{
"name": "@kyrielle/logger",
"version": "2.0.0",
"license": "MIT",
"author": "Julien Capellari <julien.capellari@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jujulego/kyrielle-logger"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"files": [
"./dist"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"lint": "eslint .",
"clean": "shx rm -r dist",
"build": "jill group 'build:esm // build:types'",
"build:esm": "swc src -d dist --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json",
"test": "vitest run --typecheck"
},
"dependencies": {
"@jujulego/quick-tag": "^1.0.1",
"@swc/helpers": "^0.5.3",
"kyrielle": "^2.2.1",
"pretty-ms": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@jujulego/jill": "2.5.2",
"@jujulego/vite-plugin-swc": "1.2.0",
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@swc/cli": "0.5.0",
"@swc/core": "1.9.1",
"@types/eslint__js": "8.42.3",
"@types/node": "20.17.6",
"@typescript-eslint/utils": "8.14.0",
"@vitest/coverage-v8": "2.1.4",
"@vitest/eslint-plugin": "1.1.8",
"eslint": "9.14.0",
"globals": "15.12.0",
"shx": "0.3.4",
"typescript": "5.6.3",
"typescript-eslint": "8.14.0",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.2",
"vitest": "2.1.4"
},
"dependenciesMeta": {
"vitest@2.1.4": {
"unplugged": true
}
},
"packageManager": "yarn@4.5.1"
}