-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 978 Bytes
/
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
{
"name": "on-the-run",
"version": "0.0.1",
"description": "on-the-run is a JS utils functions",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"lint": "tsc",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9a8ri3L/on-the-run.git"
},
"keywords": [
"javascript",
"typescript",
"utils",
"array",
"object",
"string",
"number",
"boolean"
],
"author": "Gabriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/9a8ri3L/on-the-run/issues"
},
"homepage": "https://github.com/9a8ri3L/on-the-run#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}