-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "@2030/simple-log",
"type": "module",
"version": "0.0.1-beta.1",
"description": "ZiJun's log utils for js/ts projects",
"author": "Zi Jun <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Jun2030/simple-log#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Jun2030/simple-log.git"
},
"keywords": [
"logs"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist"
],
"unpkg": "dist/index.umd.cjs",
"jsdelivr": "dist/index.umd.cjs",
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"scripts": {
"build": "vite build",
"lint": "eslint . --fix",
"prepare": "husky install",
"release": "bumpp package.json --commit --push --tag"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@2030/commitlint-config": "^0.0.7",
"@2030/eslint-config": "^0.0.8",
"@commitlint/cli": "^17.2.0",
"@types/crypto-js": "^4.1.1",
"bumpp": "^8.2.1",
"husky": "^8.0.1",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vite-plugin-dts": "^1.7.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}