-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "@igorskyflyer/astro-render-component",
"version": "2.0.1",
"description": "🤖 Astro component renderer. Zero configuration. Produces clean HTML strings directly in Node.js without any DOM environment. 🐬",
"sideEffects": false,
"engines": {
"node": ">=24.0"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest --run --passWithNoTests",
"pub": "pnpm test && pnpm build && git push origin main --tags"
},
"keywords": [
"withastro",
"astro",
"render",
"utility",
"tooling",
"utils",
"test",
"dom",
"ui",
"testing",
"happy-dom",
"jsdom",
"environment",
"vitest",
"jest",
"igor dimitrijević",
"igorskyflyer"
],
"license": "MIT",
"author": "Igor Dimitrijević <support@igorskyflyer.me> (https://github.com/igorskyflyer)",
"funding": "https://ko-fi.com/igorskyflyer",
"homepage": "https://github.com/igorskyflyer/npm-astro-render-component",
"repository": {
"type": "git",
"url": "git+https://github.com/igorskyflyer/npm-astro-render-component.git"
},
"bugs": {
"url": "https://github.com/igorskyflyer/npm-astro-render-component/issues"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@igorskyflyer/biome-config": "^2.2.0",
"@types/node": "^24.12.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"peerDependencies": {
"astro": ">=6.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.32.1"
}