-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.37 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@askrjs/cli",
"version": "0.2.2",
"description": "Unified CLI for the Askr platform",
"homepage": "https://github.com/askrjs/askr-cli#readme",
"bugs": {
"url": "https://github.com/askrjs/askr-cli/issues"
},
"license": "Apache-2.0",
"author": {
"name": "askrjs",
"url": "https://github.com/askrjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askrjs/askr-cli.git"
},
"bin": {
"askr": "./dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
"./ssg": {
"types": "./dist/ssg-config.d.ts",
"import": "./dist/ssg-config.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "npx rimraf dist node_modules",
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test run -c vitest.config.ts",
"test:coverage": "vp test run -c vitest.config.ts --coverage",
"fmt": "vp fmt .",
"lint": "vp lint src tests benchmarks vite.config.ts vitest.config.ts vitest.bench.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:changelog": "vp test run -c vitest.config.ts tests/changelog.test.ts",
"test:peer-floor": "vp test run -c vitest.integration.config.ts tests/integration/peer-floor.test.ts",
"test:registry-database": "vp test run -c vitest.integration.config.ts tests/integration/registry-database.test.ts",
"test:publint": "publint",
"pack:check": "npm pack --ignore-scripts --dry-run --json",
"test:templates": "vp test run -c vitest.integration.config.ts tests/integration/packed-templates.test.ts",
"bench": "npm run build --silent && npm run bench:analyze && node --import tsx benchmarks/cli.mjs --gate",
"bench:analyze": "vp test bench --run -c vitest.bench.config.ts",
"bench:json": "npm run build --silent && node --import tsx benchmarks/cli.mjs --gate --json",
"docs:check": "npm run build && node ./dist/cli.js docs check",
"docs:snapshot": "npm run build && node ./dist/cli.js docs snapshot",
"check": "npm run lint && npm run typecheck && npm run test:coverage && npm run test:changelog && npm run build && npm run docs:check && npm run test:publint && npm run pack:check",
"prepack": "npm run build",
"prepublishOnly": "npm run check && npm run test:templates && npm run test:peer-floor"
},
"dependencies": {
"@npmcli/config": "^11.0.1",
"js-yaml": "^5.4.0",
"minimatch": "^10.2.6",
"npm-registry-fetch": "^20.0.1",
"parse5": "^8.0.1",
"semver": "^7.8.5",
"tsx": "^4.23.12",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"devDependencies": {
"@askrjs/askr": ">=0.2.0 <0.3.0",
"@askrjs/charts": ">=0.2.0 <0.3.0",
"@askrjs/logos": ">=0.2.1 <0.3.0",
"@askrjs/lucide": ">=0.2.1 <0.3.0",
"@askrjs/themes": ">=0.2.4 <0.3.0",
"@askrjs/ui": ">=0.2.3 <0.3.0",
"@askrjs/vite": ">=0.2.1 <0.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.3.0",
"@types/semver": "^7.8.0",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/coverage-v8": "^4.1.11",
"publint": "^0.3.24",
"vite-plus": "0.3.0",
"vitest": "^4.1.11"
},
"peerDependencies": {
"@askrjs/askr": ">=0.2.0 <0.3.0"
},
"peerDependenciesMeta": {
"@askrjs/askr": {
"optional": true
}
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@12.0.1"
}