-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pag-name",
"version": "0.0.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"description": "Starter template for TypeScript library",
"scripts": {
"start": "nodemon --exec esno core/index.ts ./*.ts",
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -n ./changelog.options.js && git add CHANGELOG.md",
"prepare": "husky install",
"commit": "git-cz",
"release": "release-it",
"prepublishOnly": "pnpm run build"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"keywords": [
"typescript",
"libarary",
"template"
],
"author": "flingyp",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@flypeng/eslint-config": "^0.0.6",
"commitizen": "^4.2.6",
"compare-func": "^2.0.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-custom-config": "^0.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.33.0",
"esno": "^0.16.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"release-it": "^15.6.0",
"typescript": "^4.9.4",
"unbuild": "^1.0.2",
"vitest": "^0.26.3"
},
"lint-staged": {
"core/**/*.ts": [
"pnpm run lint"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release-it": {
"github": {
"release": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/flingyp"
},
"dependencies": {
"@flypeng/tool": "5.0.0-1"
}
}