-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "@aboutbits/ts-utils",
"version": "0.1.6",
"description": "AboutBits' TypeScript utilities",
"author": "AboutBits",
"license": "MIT",
"homepage": "https://github.com/aboutbits/ts-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/ts-utils"
},
"bugs": {
"url": "https://github.com/aboutbits/ts-utils/issues"
},
"keywords": [
"ts-utils",
"utils",
"typescript"
],
"private": false,
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"prettier": "@aboutbits/prettier-config",
"files": [
"readme.md",
"dist/**/*"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"engines": {
"npm": ">=10",
"node": ">=18"
},
"scripts": {
"build": "rimraf dist && npm run build:types && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"lint": "eslint --cache .",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --project tsconfig.json --noEmit",
"checks": "npm run lint && npm run typecheck",
"prepublishOnly": "npm run checks",
"prepare": "npm run build",
"preversion": "npm run checks",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@aboutbits/eslint-config": "^2.1.1",
"@aboutbits/prettier-config": "^2.0.2",
"@aboutbits/ts-config": "^1.1.16",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1"
}
}