-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "@flocon-trpg/websites-base",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "kizahasi",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn run build:self",
"build:rollup": "rollup --config",
"build:self": "rimraf ./dist && yarn build:rollup",
"lint": "eslint \"**/*.ts\" --cache",
"prettier": "yarn prettier:base --write --cache",
"prettier-check": "yarn prettier:base --check",
"prettier:base": "prettier \"**/*.{ts,tsx,js,json,yml,md,graphql}\""
},
"dependencies": {
"@flocon-trpg/core": "workspace:^",
"jotai": "^2.10.1"
},
"devDependencies": {
"@flocon-trpg/eslint-config": "workspace:^",
"@flocon-trpg/prettier-config": "workspace:^",
"@flocon-trpg/rollup-config": "workspace:^",
"@flocon-trpg/tsconfig": "workspace:^",
"@types/react": "18.3.12",
"antd": "5.21.5",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"prettier": "3.3.3",
"react": "18.3.1",
"rimraf": "5.0.10",
"rollup": "4.24.0",
"typescript": "5.6.2",
"typescript-eslint": "8.11.0"
},
"peerDependencies": {
"antd": "^5.21.5",
"react": "^18.0.0"
},
"engines": {
"node": ">=18 <21"
}
}