-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "coldwired",
"description": "An implementation of @hotwired/turbo based on remix and morphdom",
"license": "MIT",
"repository": "tchak/coldwired",
"keywords": [
"turbo",
"stimulus"
],
"scripts": {
"turbo": "turbo run test lint build",
"build": "turbo run build --force",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean",
"prepare": "pnpm run build",
"docs:dev": "pnpm oranda dev",
"docs:build": "pnpm oranda build"
},
"devDependencies": {
"@axodotdev/oranda": "^0.6.5",
"@changesets/cli": "^2.28.1",
"@testing-library/dom": "^10.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/browser": "^3.0.7",
"@vitest/ui": "^3.0.7",
"c8": "^10.1.3",
"del-cli": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.50.1",
"prettier": "^3.5.2",
"rollup": "^4.34.8",
"turbo": "^2.4.4",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@8.15.4",
"prettier": {
"singleQuote": true,
"printWidth": 100
}
}