-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.95 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.95 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
{
"name": "bun-plugin-stx",
"type": "module",
"version": "0.2.10",
"description": "A Bun plugin that allows for using Laravel Blade-like syntax.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/stx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/stx.git"
},
"bugs": {
"url": "https://github.com/stacksjs/stx/issues"
},
"keywords": [
"blade",
"css",
"bun",
"stx",
"plugin",
"generation",
"typescript",
"stacks"
],
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"bun": "./src/client.ts",
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./preload": {
"bun": "./src/preload.ts",
"import": "./dist/preload.js"
},
"./serve": {
"bun": "./src/serve.ts",
"import": "./dist/serve.js"
},
"./*": {
"bun": "./src/*",
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"serve": "./dist/serve.js",
"stx-serve": "./dist/serve.js"
},
"files": [
"LICENSE.md",
"README.md",
"dist"
],
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx --bun pickier lint",
"lint:fix": "bunx --bun pickier lint --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test --preload ../../test-utils/happy-dom.ts",
"test:watch": "bun test --watch --preload ../../test-utils/happy-dom.ts",
"test:coverage": "bun test --coverage --preload ../../test-utils/happy-dom.ts",
"typecheck": "bun tsc --noEmit"
},
"dependencies": {
"@stacksjs/stx": "workspace:*"
}
}