This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"private": true,
"name": "esora",
"description": "Framework for web visual novel development",
"repository": {
"type": "git",
"url": "git+https://github.com/kiochan/esora.git"
},
"keywords": [
"visual novel",
"game",
"web",
"typescript"
],
"author": {
"name": "Kiochan",
"email": "[email protected]",
"url": "https://github.com/kiochan"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kiochan/esora/issues"
},
"homepage": "https://github.com/kiochan/esora#readme",
"config": {
"commitizen": {
"path": "git-cz"
}
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.21.4",
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.57.1",
"commitizen": "^4.3.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"git-cz": "^4.9.0",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"scripts": {
"build": "lerna run build",
"commit": "npm run commit:pre && npm run commit:force",
"commit:pre": "npm run format && npm run lint",
"commit:force": "git-cz",
"format": "prettier --write \"packages/**/src/**/*.ts\"",
"lint": "eslint packages/**/src/** --ext .ts --ext .tsx",
"test": "jest --coverage",
"package:create": "node ./packages/create-package"
}
}