-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "@uptoolkit/js-utils",
"version": "1.0.0",
"description": "Lib utils for your next project",
"author": "Daniel Sum <daniel@wearerebel.org>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src --format esm,cjs --dts && tsc-alias",
"test": "ts-node -r tsconfig-paths/register node_modules/.bin/jest",
"format:check": "prettier --check .",
"format": "prettier --write .",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.3.5",
"typescript": "^5.2.2"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0",
"uuid": "^11.0.5"
},
"type": "module"
}