This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "@lemoncloud/lemon-front-lib",
"version": "1.4.3",
"description": "Web Core Library for Lemoncloud",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"clean": "rm -rf dist",
"start": "tsc -w",
"build": "pnpm clean && tsup src/index.ts",
"release": "pnpm run build && changeset publish",
"test": "jest --passWithNoTests --updateSnapshot --watchAll",
"test:coverage": "jest --passWithNoTests --updateSnapshot --coverage",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"changeset": "npx changeset",
"changeset:version": "npx changeset version",
"build:pack": "pnpm build && pnpm pack"
},
"keywords": [
"lemoncloud",
"cloud",
"eurekacodes"
],
"author": "Hyungtak Jin",
"license": "MIT",
"dependencies": {
"@azure/identity": "^4.0.0",
"aws-sdk": "^2.1490.0",
"axios": "0.19.0",
"crypto-js": "^4.2.0",
"whatwg-fetch": "^3.6.19"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}