generated from Himenon/template-esm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.45 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
92
{
"name": "@himenon/message-command-parser",
"version": "2.0.0",
"description": "Parse space- and colon-separated messages into parameters",
"keywords": [
"message parser",
"command parser",
"string parser"
],
"homepage": "https://github.com/Himenon/message-command-parser#readme",
"bugs": {
"url": "https://github.com/Himenon/message-command-parser/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Himenon/message-command-parser.git"
},
"license": "MIT",
"author": {
"name": "Himenon",
"email": "k.himeno314@gmail.com",
"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.5.3",
"@swc/core": "^1.3.107",
"@types/node": "20.11.16",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"conventional-changelog-angular-all": "1.7.0",
"cross-env": "^7.0.3",
"lerna": "8.0.2",
"lint-staged": "15.2.1",
"npm-run-all": "4.1.5",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"publishConfig": {
"access": "public"
}
}