-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.34 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
{
"name": "anya",
"private": true,
"description": "Anya framework repository (submodule)",
"license": "MIT",
"author": "Anya UI Contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/Constannnnnt/Anya.git"
},
"bugs": {
"url": "https://github.com/Constannnnnt/Anya/issues"
},
"homepage": "https://github.com/Constannnnnt/Anya#readme",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"purge": "pnpm -r exec node -e \"const fs=require('fs');['node_modules','dist','dist-cjs'].forEach(d=>fs.rmSync(d,{recursive:true,force:true}))\" && node -e \"const fs=require('fs');['node_modules','pnpm-lock.yaml'].forEach(d=>fs.rmSync(d,{recursive:true,force:true}))\"",
"lint": "pnpm -r lint && pnpm lint:md",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "markdownlint-cli2 --fix",
"test": "pnpm -r test",
"typecheck": "pnpm -r lint",
"changeset": "changeset",
"changeset:check": "node scripts/check-changeset.mjs",
"changeset:release-check": "node scripts/check-release-state.mjs",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"markdownlint-cli2": "^0.22.1",
"typescript": "^5.9.3"
}
}