-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "deverything",
"version": "0.29.0",
"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",
"bump": "pnpm changeset && pnpm changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeledge/deverything.git"
},
"keywords": [
"checks",
"dates",
"fake",
"generator",
"helpers",
"numbers",
"random",
"testing",
"toolkit",
"types",
"utils",
"validators",
"words"
],
"author": "ogroppo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@changesets/cli": "^2.26.0",
"@jest/globals": "^29.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"jest": "^29.4.3",
"ts-node": "^10.9.1",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
}
}