forked from vivek7405/webjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 816 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 816 Bytes
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
{
"name": "webjs-monorepo",
"private": true,
"version": "0.1.0",
"description": "webjs — AI-first, web-components-first framework.",
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"docs",
"website"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node scripts/dev-all.js",
"test": "node --test test/*.test.js",
"test:browser": "wtr",
"test:e2e": "WEBJS_E2E=1 node --test test/e2e.test.mjs",
"test:all": "npm test && npm run test:browser"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.1",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"linkedom": "^0.18.12",
"playwright": "^1.59.1",
"puppeteer-core": "^24.41.0"
}
}