-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "types-kit",
"version": "1.0.1",
"private": false,
"description": "a types toolkit",
"keywords": [
"typescript",
"toolkit"
],
"homepage": "https://github.com/Col0ring/types-kit",
"repository": {
"type": "git",
"url": "https://github.com/Col0ring/types-kit.git"
},
"license": "MIT",
"author": "Col0ring <[email protected]>",
"exports": {
".": "./src/index.d.ts",
"./*": "./src/*/index.d.ts"
},
"types": "./src/index.d.ts",
"scripts": {
"prebuild": "npm run clean",
"build": "npm run gen:submodule && api-extractor run && npm run docs",
"clean": "rimraf {dist,temp,docs}",
"docs": "api-documenter markdown -i temp -o docs",
"format": "cross-env NODE_ENV=production prettier --write .",
"gen:submodule": "tsx ./scripts/generate-submodule-packages.ts",
"lint": "npm run lint:eslint && npm run format",
"lint:eslint": "cross-env NODE_ENV=production eslint . --fix",
"prepare": "husky install",
"test": "tsc"
},
"devDependencies": {
"@col0ring/eslint-config": "^0.0.14",
"@col0ring/prettier-config": "^0.0.3",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@microsoft/api-documenter": "^7.22.33",
"@microsoft/api-extractor": "^7.36.4",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"tsx": "^3.12.8",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": ">=4.5.0"
}
}