-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
50 lines (50 loc) · 1.49 KB
/
package.json
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
{
"name": "remote-dom",
"type": "module",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/Shopify/remote-dom.git",
"workspaces": [
"./packages/*",
"./examples/*"
],
"scripts": {
"build": "pnpm -r run build",
"format": "prettier --write --cache .",
"lint": "prettier --check --cache .",
"test": "vitest",
"type-check": "tsc --build --pretty",
"version-bump": "changeset version && pnpm install --no-frozen-lockfile",
"deploy": "pnpm publish -r",
"example:getting-started": "pnpm run --filter example-getting-started start",
"example:custom-element": "pnpm run --filter example-custom-element start",
"example:kitchen-sink": "pnpm run --filter example-kitchen-sink start"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@playwright/test": "^1.48.2",
"@quilted/rollup": "^0.2.45",
"@quilted/typescript": "^0.4.2",
"@quilted/vite": "^0.1.27",
"@types/node": "~20.11.0",
"jsdom": "^25.0.0",
"playwright": "^1.48.2",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vitest": "^1.6.0"
},
"packageManager": "pnpm@9.14.2+sha256.06e65a4965baff6d6097f9c8f75c35f6d420974dbc03d775009056a69edfd271",
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
},
"browserslist": [
"defaults and not dead"
]
}