-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "rollup-ts-swc-template",
"version": "1.1.1",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"umd": "./dist/index.umd.js",
"types": "./dist/types/index.d.ts",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "prettier ./src ./__tests__ --check ",
"fix": "prettier ./src ./__tests__ --write ",
"test": "jest -c=jest.config.cjs --no-cache",
"lint-staged": "lint-staged",
"dev": "rimraf dist && rollup -c -w",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c rollup.config.js",
"commit": " git add . && git-cz",
"release": "npm run test && npm run build && standard-version",
"publishnpm": "npm publish && git push --follow-tags origin main"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.16.4",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}