-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "modern-kit",
"private": true,
"workspaces": [
"docs",
"packages/*"
],
"author": "ssi02014 <ssi02014@naver.com>",
"scripts": {
"coauthor": "node scripts/coauthor.js",
"typecheck": "lerna run typecheck",
"test": "lerna run test:run",
"eslint": "lerna run eslint",
"build:all": "lerna run build",
"build": "yarn eslint && yarn typecheck && yarn test && yarn build:all",
"publish": "lerna version && lerna publish from-package",
"start": "lerna run start",
"start:ko": "lerna run start:ko",
"start:en": "lerna run start:en",
"build:docs": "lerna run build:docs",
"publish:docs": "lerna run publish:docs",
"changeset:publish": "node ./scripts/replace-workspace-versions.js && changeset publish",
"changeset:version": "changeset version"
},
"homepage": "https://github.com/modern-agile-team/modern-kit",
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.27.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.0.3",
"eslint": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^17.3.0",
"lerna": "^9.0.3",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"engines": {
"node": ">=24",
"yarn": ">=4"
},
"license": "MIT",
"packageManager": "yarn@4.10.3"
}