-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "@cc-heart/utils-service",
"version": "3.0.0",
"description": "A collection of tools 🔧 commonly used by service",
"type": "module",
"author": "cc heart",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && rm -rf ./types && tsc -p tsconfig.build.json && rollup -c",
"test": "npx vitest",
"coverage": "npx vitest run --coverage",
"prettier": "npx prettier --write .",
"changelog": "npx conventional-changelog -p -i CHANGELOG.md -s -r 0"
},
"exports": {
".": [
{
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
],
"./package.json": "./package.json"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@types/node": "^18.17.19",
"@vitest/coverage-c8": "^0.33.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.0.3",
"tslib": "^2.6.2",
"vite": "^4.4.9",
"vitest": "^0.30.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}