-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 719 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "intercom-camera-card",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"build": "node scripts/build.mjs",
"preview": "node scripts/preview.mjs",
"format:check": "prettier --check src test scripts eslint.config.js package.json",
"lint": "eslint src test scripts",
"test": "node --test test/*.test.js",
"check": "npm run lint && npm test && npm run build && node --check intercom-camera-card.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.2",
"eslint": "^10.10.0",
"globals": "^17.12.0",
"happy-dom": "^20.14.5",
"prettier": "^3.9.6"
}
}