-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 871 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
{
"name": "@rafif0s/bogosort",
"version": "1.0.0-1",
"description": "Don't use it, please.",
"keywords": [
"sort",
"bogosort",
"bogo-sort"
],
"homepage": "https://github.com/rafifos/bogosort",
"bugs": "https://github.com/rafifos/bogosort/issues",
"license": "Unlicense",
"author": "Rafael Julio <development@rafifos.dev> (https://rafifos.dev)",
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": "github:rafifos/bogosort",
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">= 16.0.0",
"npm": ">= 99999",
"pnpm": ">= 99999",
"yarn": ">= 2.0.0"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup"
},
"devDependencies": {
"tsup": "^6.1.2",
"typescript": "^4.7.3"
}
}