-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 KB
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
{
"name": "@widget-js/log-manager",
"type": "module",
"version": "25.10.13",
"description": "",
"publishConfig": {
"access": "public"
},
"author": "Neo Fu <rtugeek@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/widom-widget/core",
"repository": {
"type": "git",
"url": "https://github.com/widom-widget/core.git"
},
"bugs": {
"url": "https://github.com/widom-widget/core/issues"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --no-cache --runInBand",
"build": "rimraf dist && tsup-node src/index.ts --format esm,cjs --dts --sourcemap",
"package": "npm run build && npm pack",
"pnpm:publish": "npm run build && pnpm publish --no-git-checks"
},
"files": [
"dist"
],
"dependencies": {
"dayjs": "^1.11.9"
},
"peerDependencies": {
"electron-log": "4.4.8"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.2.3",
"@types/node": "^20.2.5",
"@types/urijs": "^1.19.19",
"babel-core": "^6.26.3",
"eslint": "^8.48.0",
"jest": "^29.3.1",
"prettier": "^3.0.2",
"rimraf": "^4.4.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
}
}