-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 KB
/
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
{
"name": "@appsweet-co/ts-utils",
"version": "0.42.0",
"description": "A strongly-typed utility library for TypeScript",
"main": "index.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"eslint": "8.47.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-functional": "6.0.0",
"eslint-plugin-import": "2.28.0",
"tsutils": "3.21.0",
"typedoc": "0.24.8",
"typescript": "4.9.5"
},
"scripts": {
"build": "./bin/gen-index.sh",
"build:docs": "typedoc --tsconfig ./tsconfig.docs.json",
"clean": "rm -rf ./docs",
"docs": "npx http-server ./docs -c-1",
"lint": "eslint **/*.ts",
"postbuild": "npm run build:docs",
"postbuild:docs": "cp logo.png ./docs/logo.png",
"prebuild": "npm run lint",
"predocs": "npm run build:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Appsweet-co/utils.git"
},
"author": "Appsweet.co (http://appsweet.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Appsweet-co/ts-utils/issues"
},
"homepage": "https://appsweet-co.github.io/ts-utils/",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}