-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
{
"author": "TODO",
"bin": {
"TODO": "./bin/index.js"
},
"description": "TODO",
"devDependencies": {
"@release-it/keep-a-changelog": "6.0.0",
"@snowcoders/renovate-config": "3.0.0-beta.17",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"changelog-updater": "2.0.3",
"concurrently": "9.1.2",
"cpy-cli": "5.0.0",
"eslint": "9.23.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.5",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.5.0",
"prettier": "3.5.3",
"release-it": "18.1.2",
"rimraf": "6.0.1",
"sortier": "2.1.1",
"ts-jest": "29.3.0",
"tslib": "2.8.1",
"typescript": "5.8.2"
},
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"import": "./dist/lib/index.js",
"require": "./dist-cjs/lib/index.js"
},
"./package.json": "./package.json"
},
"homepage": "TODO",
"keywords": [
"TODO"
],
"license": "UNLICENSED",
"main": "./dist-cjs/lib/index.js",
"name": "@snowcoders/scaffold-typescript-cli--circleci",
"private": "true",
"repository": "TODO",
"scripts": {
"build": "concurrently \"npm:build:*\"",
"build:cjs": "tsc -p tsconfig.cjs.json && cpy ./src/cjs-package.json.txt ./dist-cjs --flat --rename=package.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf coverage dist dist-cjs",
"husky:commit-msg": "echo 'No commit message hook'",
"husky:pre-commit": "npx --no lint-staged",
"husky:pre-push": "npm test",
"prepare": "npm run clean && npm run build && npx --no husky",
"start": "node bin/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"version": "changelog-updater && git add ."
},
"sideEffects": false,
"type": "module",
"version": "0.0.0"
}