-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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
{
"name": "@kotori-bot/root",
"description": "ChatBot Framework",
"version": "1.7.0",
"private": true,
"license": "BCU",
"author": "Arimura Sena <[email protected]>",
"scripts": {
"start": "node packages/kotori/bin.js --mode dev --daemon",
"build": "tsx scripts/build && pnpm -r exec tsc --build",
"build:action": "tsx scripts/build",
"dev:only": "tsx scripts/build ./packages/ --silent && tsx packages/kotori/src/cli --mode dev",
"dev": "nodemon --watch",
"pub": "tsx scripts/pub",
"test": "pnpm -r exec jest --preset ts-jest --coverageDirectory coverage --testEnvironment node --passWithNoTests",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"files": [
"{packages,modules}/**/*/locales/**/*",
"{packages,modules}/**/*/{src,lib,dist}/**/*.js",
"{packages,modules}/**/*/{package.json,LICENSE,README.md}",
"README.md",
"LICENSE",
"pnpm-workspace.yaml",
"kotori.*"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@manypkg/get-packages": "^2.2.2",
"@rslib/core": "^0.0.18",
"@rspack/core": "^1.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"@types/picomatch": "^2.3.3",
"@types/shelljs": "^0.8.15",
"conventional-changelog-cli": "^4.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"picomatch": "^4.0.2",
"rescript": "^11.1.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.2.4",
"tsup": "^8.1.0",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]+",
"engines": {
"node": ">=17.9.0"
},
"nodemonConfig": {
"exec": "pnpm dev:only",
"ext": "ts,tsx,res",
"ignore": [
"dist",
"lib",
"data",
"log",
"tsup.config.*",
"scripts",
"tests",
"*.test.ts"
]
}
}