-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.85 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.85 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"author": "hackycy <hackycy@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/hackycy/easyink#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hackycy/easyink.git"
},
"bugs": "https://github.com/hackycy/easyink/issues",
"keywords": [],
"sideEffects": false,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --filter='./packages/**' --concurrency 50",
"play": "pnpm -F ./playground dev",
"lint": "eslint --cache .",
"release": "node ./scripts/release.mjs",
"sync:package-readmes": "node ./scripts/sync-package-readmes.mjs",
"sync:logos": "node ./scripts/sync-logos.mjs",
"render:runtime": "pnpm -F '@easyink/render-viewer-runtime...' build",
"render:manifest": "pnpm render:runtime && node ./lib/EasyInk.Render/tools/render-release.mjs validate-manifest --manifest lib/EasyInk.Render/manifests/runtime-manifest.sample.json",
"render:host:docker": "pnpm render:runtime && node ./lib/EasyInk.Render/tools/render-release.mjs build-host-matrix --docker true",
"render:release:test": "vitest run ./lib/EasyInk.Render/tools/render-release.test.mjs",
"prepublishOnly": "pnpm build",
"test": "vitest run --dom",
"typecheck": "tsc && turbo run typecheck",
"prepare": "simple-git-hooks",
"open:packages": "npx open-packages-on-npm",
"catalog": "pnpx codemod pnpm/catalog",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:status": "changeset status",
"changeset:publish": "changeset publish",
"docs:dev": "pnpm sync:logos && vitepress dev docs",
"docs:build": "pnpm sync:logos && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:cli",
"@antfu/utils": "catalog:inlined",
"@changesets/cli": "catalog:cli",
"@clack/prompts": "catalog:cli",
"@tsdown/css": "catalog:cli",
"@types/node": "catalog:types",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"fflate": "catalog:testing",
"happy-dom": "catalog:testing",
"lint-staged": "catalog:cli",
"publint": "catalog:cli",
"sass-embedded": "catalog:cli",
"simple-git-hooks": "catalog:cli",
"tinyexec": "catalog:testing",
"tsdown": "catalog:cli",
"tsx": "catalog:cli",
"turbo": "catalog:cli",
"typescript": "catalog:cli",
"unplugin-vue": "catalog:cli",
"vite": "catalog:cli",
"vitepress": "catalog:cli",
"vitest": "catalog:testing",
"vitest-package-exports": "catalog:testing",
"vue": "catalog:framework",
"vue-tsc": "catalog:cli",
"yaml": "catalog:testing"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}