-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "front-logs",
"version": "2.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"build:demo": "tsup --config demo.tsup.config.ts",
"build:raw": "tsup src/index.ts --dts --no-config",
"build:dev": "tsup --config dev.tsup.config.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mosuzi/front-logs.git"
},
"author": "mosuzi",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@swc/core": "^1.3.49",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"page-lifecycle": "^0.1.2",
"prettier": "2.8.7",
"terser": "^5.16.8",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"type": "module",
"dependencies": {
"idb-js": "^1.3.1"
},
"files": [
"dist",
"public"
]
}