-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 938 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 938 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
{
"name": "snapfill",
"version": "0.0.0",
"private": true,
"description": "Cross-platform WebView autofill engine",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"demo": "turbo run build && npx serve@latest . -l 3000 --no-clipboard && open http://localhost:3000/example/web",
"format": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"clean": "turbo run clean",
"generate:native": "node scripts/generate-native-scripts.mjs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"prettier": "^3.3.0",
"turbo": "^2.3.0",
"typescript": "^5.6.0"
},
"packageManager": "pnpm@10.29.3",
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"engines": {
"node": ">=18"
}
}