-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.02 KB
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
{
"name": "@himenon/message-command-parser",
"version": "3.0.1",
"description": "Parse space- and colon-separated messages into parameters",
"keywords": [
"command parser",
"message parser",
"string parser"
],
"homepage": "https://github.com/Himenon/message-command-parser#readme",
"bugs": {
"url": "https://github.com/Himenon/message-command-parser/issues"
},
"license": "MIT",
"author": {
"name": "Himenon",
"email": "k.himeno314@gmail.com",
"url": "https://github.com/Himenon"
},
"repository": {
"type": "git",
"url": "git@github.com:Himenon/message-command-parser.git"
},
"directories": {
"dist": "dist"
},
"files": [
"dist",
"package.json",
"README.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"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": "oxlint .",
"format": "oxfmt",
"validate": "oxfmt --check",
"test:vitest": "vitest"
},
"devDependencies": {
"@swc/core": "^1.15.33",
"@types/node": "25.7.0",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"conventional-changelog-angular-all": "1.7.0",
"cross-env": "^10.1.0",
"lefthook": "^2.1.6",
"lerna": "9.0.7",
"npm-run-all": "4.1.5",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"typescript": "6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.27.0"
}