-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.33 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
74
75
76
77
{
"name": "yotils",
"version": "0.0.2",
"description": "Typescript utility functions.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"build:docs": "npm-run-all build api:extract api:document api:git",
"dev": "tsup --watch",
"api:git": "git add --renormalize docs",
"api:extract": "api-extractor run --local",
"api:document": "api-documenter markdown --input-folder temp --output-folder docs",
"test": "jest",
"clean": "rimraf dist temp docs",
"lint": "eslint --ext .ts --ext .js .",
"lint:fix": "eslint --ext .ts --ext .js --fix .",
"lint:types": "tsc --pretty --noEmit",
"format": "prettier --check '**/*.{js,ts,json,yml,md}'",
"format:fix": "prettier --write '**/*.{js,ts,json,yml,md}'"
},
"repository": {
"type": "git",
"url": "github:behzadam/yotils"
},
"homepage": "https://github.com/behzadam/yotils",
"keywords": [
"typescript",
"utils"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.26.11",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@tsconfig/node12": "^12.1.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.2",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"ts-jest": "^29.2.6",
"tsup": "^8.4.0",
"typescript": "^5.7.3"
},
"private": false,
"dependencies": {
"@microsoft/api-extractor": "^7.50.1"
}
}