-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
{
"name": "@netly/template",
"version": "1.1.0",
"description": "Template repository",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/src/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"prebuild": "rimraf dist && tsc --emitDeclarationOnly",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"postbuild": "./postbuild.sh",
"build": "npm run build:cjs && npm run build:esm",
"lint": "eslint . --format stylish && tsc --noEmit",
"pretest": "npm run build",
"test": "node --test test",
"cz": "cz",
"update": "npx npm-check-updates -u",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"devDependencies": {
"@netly/eslint-config-base": "1.2.11",
"@netly/prettier-config": "1.3.0",
"@netly/semantic-release-config": "1.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"prettier": "@netly/prettier-config",
"engines": {
"node": ">=20"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{ts,js,vue,html,css}": "prettier --write",
"src/**/*.{ts,js,vue}": "eslint --fix"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/DmytroMysak/template"
},
"bugs": {
"url": "https://github.com/DmytroMysak/template/issues"
},
"homepage": "https://github.com/DmytroMysak/template#readme",
"keywords": [
"template"
],
"author": "Dmytro Mysak <[email protected]>",
"license": "MIT"
}