-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "@subwaytime/fumi",
"version": "0.0.3",
"private": false,
"description": "A lightweight, intuitive template language for Vue 3.",
"keywords": [
"vite",
"vue",
"vue3",
"fumi",
"template",
"templating language",
"syntax"
],
"homepage": "https://github.com/subwaytime/fumi#readme",
"bugs": "https://github.com/subwaytime/fumi/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/subwaytime/fumi.git"
},
"license": "MIT",
"author": "Subwaytime <leon.l@nophase.de>",
"scripts": {
"test": "vitest run",
"bundle": "bunx --bun tsdown",
"prepublishOnly": "bun run bundle",
"release": "bunx git-ensure -a && bunx bumpp --commit --tag --push && bun publish --access public"
},
"exports": {
"./vite": {
"import": "./dist/vite.js",
"types": "./dist/vite.d.ts"
},
"./volar": {
"require": "./dist/volar.js",
"types": "./dist/volar.d.ts"
},
"./core": {
"import": "./dist/core.js",
"types": "./dist/core.d.ts"
},
"./skill": "./packages/skills/SKILL.md"
},
"files": [
"./dist",
"./packages/skills",
"AGENTS.md"
],
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@types/bun": "latest",
"tsdown": "^0.21.7",
"type-fest": "^5.5.0",
"@volar/source-map": "^2.4.28",
"@vue/compiler-dom": "^3.5.33"
}
},
"devDependencies": {
"@types/bun": "catalog:",
"@volar/source-map": "^catalog:",
"@vue/compiler-dom": "^catalog:",
"tsdown": "catalog:",
"vitest": "^3.0.0"
},
"packageManager": "bun@1.3.13"
}