-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.66 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
{
"name": "pkg-pr-new",
"private": true,
"version": "0.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "pnpm -r run dev",
"build": "pnpm -r run build",
"publish:playgrounds": "pnpm pkg-pr-new publish './playgrounds/*' ./packages/cli --template './templates/*' --peerDeps",
"format": "prettier --write --cache .",
"lint": "pnpm run lint:fix && pnpm run lint:format && pnpm run lint:js",
"lint:js": "eslint --cache .",
"lint:format": "prettier --check --cache .",
"lint:fix": "prettier --write --cache .",
"lint:types": "pnpm -r --parallel run typecheck || echo 'Type checking finished with errors'",
"release": "tsx script/release.ts",
"test": "pnpm --filter=app test",
"test:unit": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@jsdevtools/ez-spawn": "^3.0.4",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/release-scripts": "^1.3.1",
"cross-env": "^7.0.3",
"esbuild": "^0.20.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-vue": "^10.0.0",
"ohash": "^1.1.3",
"pkg-pr-new": "workspace:^",
"prettier": "^3.2.5",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"uncrypto": "^0.1.3",
"vitest": "^3.0.5",
"vue-eslint-parser": "^10.1.3",
"wait-port": "^1.1.0"
},
"dependencies": {
"@cloudflare/vitest-pool-workers": "^0.6.8",
"wrangler": "^3.57.1"
},
"packageManager": "pnpm@10.33.0"
}