-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.26 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.26 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
99
100
{
"name": "@baleada/prepare",
"version": "0.5.53",
"description": "Opinionated tools for preparing Baleada packages to be published",
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
},
"scripts": {
"prepare": "tsc && rollup --config rollup.config.ts --configPlugin typescript --bundleConfigAsCjs",
"test:only": "run() { uvu -r esbuild-register tests/$2 $1.test.ts$; }; run",
"test": "npm run test:only .",
"i:latest": "node -r esbuild-register scripts/latest.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baleada/prepare.git"
},
"keywords": [
"baleada",
"prepare"
],
"author": {
"name": "Alex Vipond",
"email": "hello@alexvipond.dev",
"url": "https://alexvipond.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/baleada/prepare/issues"
},
"homepage": "https://baleada.netlify.com",
"devDependencies": {
"@vue/compiler-sfc": "^3.5.13",
"esbuild": "^0.25.0",
"esbuild-register": "^3.6.0",
"tslib": "^2.8.1",
"uvu": "^0.5.6"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@babel/runtime": "^7.26.7",
"@baleada/markdown-it-prose-container": "^0.9.3",
"@baleada/markdown-it-spa-links": "^0.7.1",
"@baleada/markdown-it-text-content": "^0.2.0",
"@baleada/rollup-plugin-source-transform": "^0.5.1",
"@baleada/rollup-plugin-virtual": "^0.1.2",
"@baleada/tailwind-ancestor-variants": "^0.0.5",
"@baleada/tailwind-linear-numeric": "^0.12.1",
"@baleada/tailwind-theme-utils": "^0.7.1",
"@baleada/tailwind-utilities": "^0.3.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^11.1.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.16",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/puppeteer-core": "^7.0.4",
"@types/refractor": "3.4.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue-macros/volar": "^0.30.14",
"autoprefixer": "^10.4.20",
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"parse5": "^7.2.1",
"playwright-core": "^1.50.1",
"postcss": "^8.5.1",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.3",
"puppeteer-core": "^24.2.0",
"query-string": "^9.1.1",
"refractor": "3.6.0",
"rehype": "11.0.0",
"rollup": "^4.34.6",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.2.0",
"rollup-plugin-vue": "^6.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"unplugin-vue-macros": "^2.14.2",
"vite": "^6.1.0",
"vite-plugin-lightningcss": "^0.0.5",
"vite-plugin-pages": "^0.32.4"
}
}