-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@reallyland/tools",
"version": "0.9.7",
"description": "A collection of opinionated tools for the Reallyland projects",
"keywords": [
"really",
"reallyland",
"shell",
"tool",
"tools"
],
"homepage": "https://github.com/reallyland/tools",
"repository": {
"type": "git",
"url": "git@github.com:reallyland/tools.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"type": "module",
"exports": {
".": "./index.js"
},
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"files": [
"!**/*demo*/**/*.*",
"!**/*test*/**/*.*",
".editorconfig",
".gitattributes",
".github/**/*.yml",
".gitignore",
".npmrc",
"**/*.d.ts.map",
"**/*.d.ts",
"**/*.js.map",
"**/*.js",
"**/*.json",
"**/*.sh"
],
"scripts": {
"fmt": "biome format --write",
"lint-build": "printf \"lint-build is not needed\"",
"lint-commit": "sh lint-commit.sh",
"pre-commit": "package-check && nano-staged"
},
"optionalDependencies": {
"@biomejs/biome": "^1.2.2",
"@commitlint/config-conventional": "^17.7.0",
"@skypack/package-check": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0"
},
"engines": {
"node": ">= 18.x",
"npm": ">= 9.x"
},
"publishConfig": {
"access": "public"
}
}