-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.51 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
59
60
{
"name": "deverything",
"version": "1.12.1",
"description": "Everything you need for Dev",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**"
],
"scripts": {
"build": "tsup --treeshake",
"ci:publish": "pnpm publish --no-git-checks",
"clean": "rm -rf node_modules && rm -rf dist",
"dev": "tsup --watch",
"lint": "TIMING=1 eslint src --fix",
"prepublish": "pnpm test && pnpm build",
"test": "jest",
"release": "pnpm changeset && pnpm changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeledge/deverything.git"
},
"keywords": [
"checks",
"dates",
"fake",
"formatters",
"generator",
"helpers",
"math",
"numbers",
"random",
"testing",
"toolkit",
"types",
"utils",
"validators",
"words"
],
"author": "ogroppo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@changesets/cli": "^2.27.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.26",
"jest": "^29.7.0",
"timezone-mock": "^1.3.6",
"ts-node": "^10.9.2",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}