-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.86 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
{
"description": "Create React apps with no build configuration, Cli tool for creating react apps.",
"author": "Kenny Wong <[email protected]> (https://github.com/jaywcjlove)",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kktjs/kkt.git"
},
"scripts": {
"prepare": "husky",
"lib:----->>>": ">>>>>>>>>>>>>>>>>>>>>>>>>>>",
"lib:watch": "lerna exec \"tsbb watch --no-esm\" --scope @kkt/*",
"lib:watch:less": "lerna exec \"tsbb watch --no-esm\" --scope @kkt/less-modules",
"lib:<<<-----": "<<<<<<<<<<<<<<<<<<<<<<<<<<<",
"kkt:----->>>": ">>>>>>>>>>>>>>>>>>>>>>>>>>>",
"kkt:watch": "lerna exec --scope kkt -- npm run watch",
"kkt:build": "lerna exec --scope kkt -- npm run build",
"kkt:test": "lerna exec tsbb test --scope kkt",
"kkt:coverage": "lerna exec \"tsbb test --coverage\" --scope kkt",
"kkt:<<<-----": "<<<<<<<<<<<<<<<<<<<<<<<<<<<",
"build": "lerna exec \"tsbb build --no-esm\" --scope kkt --scope @kkt/*",
"version": "lerna version --no-changelog --no-git-tag-version --no-push",
"publish": "npm run build && lerna publish from-package",
"ci:publish": "lerna publish from-package --yes",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"updated": "lerna updated",
"remove": "lerna exec \"rm -rf node_modules build package-lock.json\"",
"clean": "lerna clean --yes && npm run remove",
"tsbb": "tsbb",
"lerna": "lerna"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": {
"packages": [
"core",
"example/*",
"packages/*"
]
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": "prettier --write"
},
"devDependencies": {
"@babel/runtime": "^7.18.3",
"husky": "^9.0.11",
"lerna": "~8.1.0",
"lint-staged": "^15.0.0",
"prettier": "~3.3.0",
"tsbb": "^4.1.5"
}
}