-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1023 Bytes
/
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
{
"name": "@4sizn/customlog-web",
"private": false,
"version": "0.0.14",
"main": "./dist/custom-log.umd.js",
"module": "./dist/custom-log.es.js",
"prepublish": "tsc",
"exports": {
".": {
"import": "./dist/custom-log.es.js",
"require": "./dist/custom-log.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest src"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.9.13"
},
"repository": {
"type": "git",
"url": "https://github.com/4sizn/customLog-web.git"
},
"keywords": [
"console",
"log",
"logger"
],
"homepage": "https://github.com/4sizn/customLog-web",
"bugs": {
"url": "https://github.com/4sizn/customLog-web/issues",
"email": "[email protected]"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"author": "4sizn <[email protected]>"
}