-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (33 loc) · 1.02 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
{
"name": "expressive-code-fullscreen-monorepo",
"version": "0.0.0",
"license": "MIT",
"description": "Add fullscreen functionality to codeblocks in your documentation website.",
"author": "frostybee",
"type": "module",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"eslint": "^9.27.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"tsup": "^8.3.5"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@10.26.0",
"sideEffects": false,
"private": true,
"scripts": {
"build": "pnpm -F expressive-code-fullscreen build",
"build:docs": "pnpm -F expressive-code-fullscreen/docs build",
"start:docs": "pnpm -F expressive-code-fullscreen/docs start",
"ci-version": "changeset version && pnpm install --no-frozen-lockfile",
"ci-publish": "pnpm build && changeset publish"
}
}