-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rics-monorepo",
"private": true,
"description": "Monorepo for rics - Lightweight SCSS-like CSS preprocessor",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm --filter rics build && pnpm -r --parallel dev",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"preflight": "pnpm typecheck && pnpm test && pnpm knip && pnpm build",
"playground": "pnpm --filter rics-playground dev",
"playground:build": "pnpm --filter rics-playground build",
"clean": "rm -rf packages/*/dist apps/*/dist node_modules/.cache",
"cli:watch": "node ./packages/cli/dist/cli.js apps/playground/src/styles.rics -o apps/playground/src/styles.css --watch",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && pnpm test && changeset publish",
"size": "bundlesize",
"bench": "pnpm --filter rics build && node benchmarks/update-readme.js",
"publish:all": "pnpm -r publish --access public",
"knip": "knip",
"format": "npx prettier --plugin ./packages/prettier-plugin/dist/index.js --write **/*.rics"
},
"bundlesize": [
{
"path": "./packages/core/dist/index.js",
"maxSize": "15 kB",
"compression": "gzip"
},
{
"path": "./packages/vite-plugin/dist/index.js",
"maxSize": "2 kB",
"compression": "gzip"
},
{
"path": "./packages/codemirror/dist/index.js",
"maxSize": "4 kB",
"compression": "gzip"
},
{
"path": "./packages/cli/dist/cli.js",
"maxSize": "2 kB",
"compression": "gzip"
},
{
"path": "./packages/webpack-loader/dist/index.js",
"maxSize": "1 kB",
"compression": "gzip"
},
{
"path": "./packages/eslint-plugin/dist/index.js",
"maxSize": "2 kB",
"compression": "gzip"
},
{
"path": "./packages/prettier-plugin/dist/index.js",
"maxSize": "1 kB",
"compression": "gzip"
}
],
"devDependencies": {
"@changesets/cli": "^2.29.8",
"bundlesize2": "^0.0.35",
"knip": "^5.71.0",
"prettier": "^3.0.0",
"prettier-plugin-rics": "workspace:*",
"typescript": "^5.0.0"
},
"keywords": [
"scss",
"css",
"rics",
"preprocessor",
"codemirror",
"lightweight",
"vite-plugin"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"packageManager": "pnpm@9.15.0"
}