-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "taketkt",
"version": "1.4.29",
"description": "taketkt types, setters, validators, utilities, and generate functions that are used across taketkt projects",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "yarn clean:cjs && yarn clean:esm && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"clean:cjs": "rimraf lib",
"clean:esm": "rimraf esm",
"release": "yarn build && release-it",
"release:beta": "yarn build && release-it --preRelease=beta"
},
"repository": "https://github.com/TakeTkt/taketkt-npm.git",
"author": "Mustafa Alsihati <51824138+MustafaAlsihati@users.noreply.github.com>",
"license": "MIT",
"files": [
"lib",
"esm",
"umd"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"@types/lodash.isequalwith": "^4.4.9",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"lodash.isequalwith": "^4.4.0",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"packageManager": "yarn@4.6.0"
}