-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.56 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.56 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
{
"name": "@wandler/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cd packages/wandler && npm run dev",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules && rm -rf examples/*/node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"release:all": "npm run changeset && npm run version && npm run release",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"preinstall": "npx only-allow npm",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"test:app": "vite tests/demo",
"test:e2e": "playwright test",
"test:e2e:debug": "playwright test --debug",
"test:e2e:generate-text": "playwright test wandler/tests/e2e/generate-text.test.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.50.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.2.4",
"vite": "^6.1.0"
},
"dependencies": {
"marked": "^15.0.7",
"use-stick-to-bottom": "^1.0.46"
}
}