-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.64 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
{
"name": "@shalecss/root",
"version": "0.0.3",
"private": true,
"description": "a pseudo-skeuomorph CSS framework",
"scripts": {
"build:core": "cd workspaces/core && npm run build",
"dev:core": "cd workspaces/core && npm run dev",
"build:react": "cd workspaces/react && npm run build",
"dev:react": "cd workspaces/react && npm run dev",
"build:website": "cd workspaces/website && npm run build",
"dev:website": "cd workspaces/website && npm run dev",
"build": "npm run build:core && npm run build:react && npm run build:website",
"dev": "concurrently --names core,react,website 'npm run dev:core' 'npm run dev:react' 'npm run dev:website'",
"pretty": "prettier --write . \"!**/reports/*.md\" --list-different",
"version": "npm run pretty && node ./scripts/version-bump.mjs && npm install && npm run build"
},
"devDependencies": {
"concurrently": "^10.0.3",
"prettier": "3.8.3",
"prettier-plugin-jsdoc": "1.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/logonoff/shalecss.git"
},
"author": "logonoff",
"license": "MIT",
"bugs": {
"url": "https://github.com/logonoff/shalecss/issues"
},
"homepage": "https://logonoff.co/shalecss",
"workspaces": [
"workspaces/core",
"workspaces/react",
"workspaces/website"
],
"prettier": {
"plugins": [
"prettier-plugin-jsdoc"
],
"tsdoc": true,
"jsdocSeparateTagGroups": true,
"jsdocPreferCodeFences": true
},
"packageManager": "npm@11.11.0+sha512.f36811c4aae1fde639527368ae44c571d050006a608d67a191f195a801a52637a312d259186254aa3a3799b05335b7390539cf28656d18f0591a1125ba35f973"
}