generated from Himenon/template-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.36 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@himenon/template-esm-js",
"version": "1.1.10",
"description": "ESModule Library Template",
"keywords": [
"template",
"typescript"
],
"homepage": "https://github.com/Himenon/template-esm-js#readme",
"bugs": {
"url": "https://github.com/Himenon/template-esm-js/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Himenon/template-esm-js.git"
},
"license": "MIT",
"author": {
"name": "Himenon",
"email": "[email protected]",
"url": "https://github.com/Himenon"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"dist": "dist"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsup src/*.ts",
"clean": "rimraf dist",
"lerna:version:up": "lerna version --yes",
"release:github:registry": "pnpm publish --registry https://npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}",
"release:npm:registry": "pnpm publish",
"test": "run-p test:vitest lint",
"lint": "biome lint .",
"format": "biome format --write .",
"validate": "biome check --apply .",
"test:vitest": "vitest",
"ts": "node --no-warnings=ExperimentalWarning --experimental-specifier-resolution=node --loader ts-node/esm"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,json,yml,yaml,html,md,ts,tsx}": [
"biome format --no-errors-on-unmatched --write"
]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@swc/core": "^1.10.1",
"@types/node": "20.12.2",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"conventional-changelog-angular-all": "1.7.0",
"cross-env": "^7.0.3",
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "5.4.3",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"publishConfig": {
"access": "public"
}
}