-
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.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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": "@mr_hugo/boredom",
"version": "0.28.1",
"description": "The LLM-First JavaScript Framework",
"bin": {
"boredom": "./bin/boredom.js"
},
"main": "src/boreDOM.js",
"files": [
"bin/boredom.js",
"src/boreDOM.js",
"src/scaffold.html",
"src/component.template.js",
"src/validator.js",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "playwright test",
"test:boredom": "playwright test e2e/boredom.spec.ts",
"test:headless": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"check:runtime-parity": "node scripts/check-runtime-parity.js",
"sync:landing": "cp src/boreDOM.js landing-page/boreDOM.js",
"build:cli": "node scripts/build-cli.js",
"build:plugin": "cd packages/vite-plugin-boredom && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HugoDaniel/boreDOM.git"
},
"keywords": [
"framework",
"llm",
"single-file",
"web-components",
"zero-build"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/HugoDaniel/boreDOM/issues"
},
"homepage": "https://github.com/HugoDaniel/boreDOM#readme",
"dependencies": {
"acorn": "^8.14.0",
"parse5": "^7.1.2"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.9",
"esbuild": "^0.24.0"
},
"workspaces": [
"packages/*"
]
}